summaryrefslogtreecommitdiff
path: root/vendor/github.com/dsoprea/go-exif/v3/error.go
diff options
context:
space:
mode:
authorLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-01-23 14:41:31 +0100
committerLibravatar tsmethurst <tobi.smethurst@protonmail.com>2022-01-23 14:41:31 +0100
commit7d024ce74d29a14bc8db60495751e674bdb24463 (patch)
tree6d6b0cde4a2245a2539e7251c484bcaf00291056 /vendor/github.com/dsoprea/go-exif/v3/error.go
parentpass reader around instead of []byte (diff)
downloadgotosocial-7d024ce74d29a14bc8db60495751e674bdb24463.tar.xz
use exif-terminator
Diffstat (limited to 'vendor/github.com/dsoprea/go-exif/v3/error.go')
-rw-r--r--vendor/github.com/dsoprea/go-exif/v3/error.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/github.com/dsoprea/go-exif/v3/error.go b/vendor/github.com/dsoprea/go-exif/v3/error.go
new file mode 100644
index 000000000..2f00b08a4
--- /dev/null
+++ b/vendor/github.com/dsoprea/go-exif/v3/error.go
@@ -0,0 +1,14 @@
+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")
+)