1 2 3 4 5 6 7 8 9 10
package exif import ( "errors" ) var ( ErrTagNotFound = errors.New("tag not found") ErrTagNotStandard = errors.New("tag not a standard tag") )