stuve-it-backend/goqr/error.go

10 lines
128 B
Go
Raw Normal View History

2024-03-27 15:14:56 +00:00
package goqr
type DataTooLongException struct {
Msg string
}
func (d *DataTooLongException) Error() string {
return d.Msg
}