mirror of
1
Fork 0
gotosocial/vendor/github.com/dsoprea/go-exif/error.go

11 lines
151 B
Go

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