go-exif/v2/error.go
2020-01-02 07:06:28 -05:00

11 lines
157 B
Go

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