yay/pkg/text/errors.go

10 lines
172 B
Go

package text
import "github.com/leonelquinteros/gotext"
type ErrInputOverflow struct{}
func (e ErrInputOverflow) Error() string {
return gotext.Get("input too long")
}