errors.go 172 B

123456789
  1. package text
  2. import "github.com/leonelquinteros/gotext"
  3. type ErrInputOverflow struct{}
  4. func (e ErrInputOverflow) Error() string {
  5. return gotext.Get("input too long")
  6. }