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

25 lines
431 B
Go

package gozxing
type WriterException interface {
error
writerException()
}
type writerException struct {
exception
}
func (writerException) writerException() {}
func NewWriterException(args ...interface{}) WriterException {
return writerException{
newException("WriterException", args...),
}
}
func WrapWriterException(err error) WriterException {
return writerException{
wrapException("WriterException", err),
}
}