mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
12 lines
211 B
Go
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")
|
|
}
|