error.go (285B)
1 package exif 2 3 import ( 4 "errors" 5 ) 6 7 var ( 8 // ErrTagNotFound indicates that the tag was not found. 9 ErrTagNotFound = errors.New("tag not found") 10 11 // ErrTagNotKnown indicates that the tag is not registered with us as a 12 // known tag. 13 ErrTagNotKnown = errors.New("tag is not known") 14 )