sing/common/metadata/exception.go
2022-04-11 12:46:23 +08:00

12 lines
211 B
Go

package metadata
import "fmt"
type StringTooLongException struct {
Op string
Len int
}
func (e StringTooLongException) Error() string {
return fmt.Sprint(e.Op, " too long: length ", e.Len, ", max 255")
}