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

26 lines
511 B
Go

package gozxing
type ChecksumException interface {
ReaderException
checksumException()
}
type checksumException struct {
exception
}
func (checksumException) readerException() {}
func (checksumException) checksumException() {}
func NewChecksumException(args ...interface{}) ChecksumException {
return checksumException{
newException("ChecksumException", args...),
}
}
func WrapChecksumException(e error) ChecksumException {
return checksumException{
wrapException("ChecksumException", e),
}
}