Bumps [github.com/shamaton/msgpack/v2](https://github.com/shamaton/msgpack) from 2.2.0 to 2.2.2. - [Release notes](https://github.com/shamaton/msgpack/releases) - [Commits](https://github.com/shamaton/msgpack/compare/v2.2.0...v2.2.2) --- updated-dependencies: - dependency-name: github.com/shamaton/msgpack/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
1.1 KiB
Go
32 lines
1.1 KiB
Go
package def
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
// base errors
|
|
|
|
ErrMsgpack = errors.New("")
|
|
|
|
// decoding errors
|
|
|
|
ErrNoData = fmt.Errorf("%wno data", ErrMsgpack)
|
|
ErrHasLeftOver = fmt.Errorf("%wdata has left over", ErrMsgpack)
|
|
ErrReceiverNotPointer = fmt.Errorf("%wreceiver not pointer", ErrMsgpack)
|
|
ErrNotMatchArrayElement = fmt.Errorf("%wnot match array element", ErrMsgpack)
|
|
ErrCanNotDecode = fmt.Errorf("%winvalid code", ErrMsgpack)
|
|
ErrCanNotSetSliceAsMapKey = fmt.Errorf("%wcan not set slice as map key", ErrMsgpack)
|
|
ErrCanNotSetMapAsMapKey = fmt.Errorf("%wcan not set map as map key", ErrMsgpack)
|
|
|
|
// encoding errors
|
|
|
|
ErrTooShortBytes = fmt.Errorf("%wtoo short bytes", ErrMsgpack)
|
|
ErrLackDataLengthToSlice = fmt.Errorf("%wdata length lacks to create slice", ErrMsgpack)
|
|
ErrLackDataLengthToMap = fmt.Errorf("%wdata length lacks to create map", ErrMsgpack)
|
|
ErrUnsupportedType = fmt.Errorf("%wunsupported type", ErrMsgpack)
|
|
ErrUnsupportedLength = fmt.Errorf("%wunsupported length", ErrMsgpack)
|
|
ErrNotMatchLastIndex = fmt.Errorf("%wnot match last index", ErrMsgpack)
|
|
)
|