mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
55 lines
2.7 KiB
Go
55 lines
2.7 KiB
Go
// The MIT License
|
|
//
|
|
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
|
|
//
|
|
// Copyright (c) 2020 Uber Technologies, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
package converter
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrMetadataIsNotSet is returned when metadata is not set.
|
|
ErrMetadataIsNotSet = errors.New("metadata is not set")
|
|
// ErrEncodingIsNotSet is returned when payload encoding metadata is not set.
|
|
ErrEncodingIsNotSet = errors.New("payload encoding metadata is not set")
|
|
// ErrEncodingIsNotSupported is returned when payload encoding is not supported.
|
|
ErrEncodingIsNotSupported = errors.New("payload encoding is not supported")
|
|
// ErrUnableToEncode is returned when unable to encode.
|
|
ErrUnableToEncode = errors.New("unable to encode")
|
|
// ErrUnableToDecode is returned when unable to decode.
|
|
ErrUnableToDecode = errors.New("unable to decode")
|
|
// ErrUnableToSetValue is returned when unable to set value.
|
|
ErrUnableToSetValue = errors.New("unable to set value")
|
|
// ErrUnableToFindConverter is returned when unable to find converter.
|
|
ErrUnableToFindConverter = errors.New("unable to find converter")
|
|
// ErrTypeNotImplementProtoMessage is returned when value doesn't implement proto.Message.
|
|
ErrTypeNotImplementProtoMessage = errors.New("type doesn't implement proto.Message")
|
|
// ErrValuePtrIsNotPointer is returned when proto value is not a pointer.
|
|
ErrValuePtrIsNotPointer = errors.New("not a pointer type")
|
|
// ErrValuePtrMustConcreteType is returned when proto value is of interface type.
|
|
ErrValuePtrMustConcreteType = errors.New("must be a concrete type, not interface")
|
|
// ErrTypeIsNotByteSlice is returned when value is not of *[]byte type.
|
|
ErrTypeIsNotByteSlice = errors.New("type is not *[]byte")
|
|
)
|