1
0
mirror of https://github.com/Jguer/yay.git synced 2026-04-11 16:51:28 +02:00
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")
}