1
0
mirror of https://github.com/dsoprea/go-exif.git synced 2025-04-05 00:11:00 +00:00
2020-06-12 02:22:22 -04:00

11 lines
151 B
Go

package exif
import (
"errors"
)
var (
ErrTagNotFound = errors.New("tag not found")
ErrTagNotStandard = errors.New("tag not a standard tag")
)