mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
9 lines
172 B
Go
9 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")
|
|
}
|