Skip to content
Snippets Groups Projects
errors.go 288 B
package approvers

import "github.com/iotaledger/goshimmer/packages/errors"

var (
	ErrUnmarshalFailed = errors.Wrap(errors.New("unmarshall failed"), "input data is corrupted")
	ErrMarshallFailed  = errors.Wrap(errors.New("marshal failed"), "the source object contains invalid values")
)