sing/common/socksaddr/exception.go
2022-01-29 03:25:38 +08:00

12 lines
212 B
Go

package socksaddr
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")
}