fckeuspy-go/vendor/github.com/makiuchi-d/gozxing/format_exception.go
2025-09-28 21:03:39 +02:00

26 lines
481 B
Go

package gozxing
type FormatException interface {
ReaderException
formatException()
}
type formatException struct {
exception
}
func (formatException) readerException() {}
func (formatException) formatException() {}
func NewFormatException(args ...interface{}) FormatException {
return formatException{
newException("FormatException", args...),
}
}
func WrapFormatException(e error) FormatException {
return formatException{
wrapException("FormatException", e),
}
}