Files
go-easy-utils/jsonUtil/err_code.go
2024-04-03 10:37:59 +08:00

17 lines
407 B
Go

package jsonUtil
import (
"errors"
"strconv"
)
var (
// ErrSyntax indicates that a value does not have the right syntax for the target type
// 指示值不具有目标类型的正确语法
ErrSyntax = strconv.ErrSyntax
// ErrType indicates that a value does not have the right syntax for the target type
// 指示值不具有目标类型的正确语法
ErrType = errors.New("unsupported type")
)