mirror of
https://github.com/dsoprea/go-exif.git
synced 2025-04-27 21:22:59 +00:00
This reverts commit 4450f89e048a2373cd82a911725b6c54d22632eb. The next commit has the fixes.
15 lines
285 B
Go
15 lines
285 B
Go
package exif
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrTagNotFound indicates that the tag was not found.
|
|
ErrTagNotFound = errors.New("tag not found")
|
|
|
|
// ErrTagNotKnown indicates that the tag is not registered with us as a
|
|
// known tag.
|
|
ErrTagNotKnown = errors.New("tag is not known")
|
|
)
|