25 lines
695 B
Go
25 lines
695 B
Go
// Code generated by "stringer -type=ErrorCode -linecomment -output=errors_string.go errors.go"; DO NOT EDIT.
|
|
|
|
package sm1
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[ErrInvalidInputLength-16781312]
|
|
}
|
|
|
|
const _ErrorCode_name = "输入长度不合法"
|
|
|
|
var _ErrorCode_index = [...]uint8{0, 21}
|
|
|
|
func (i ErrorCode) String() string {
|
|
i -= 16781312
|
|
if i >= ErrorCode(len(_ErrorCode_index)-1) {
|
|
return "ErrorCode(" + strconv.FormatInt(int64(i+16781312), 10) + ")"
|
|
}
|
|
return _ErrorCode_name[_ErrorCode_index[i]:_ErrorCode_index[i+1]]
|
|
}
|