github.com/ydb-platform/ydb-go-sdk/v3@v3.89.2/internal/value/errors.go (about) 1 package value 2 3 import "errors" 4 5 var ( 6 ErrCannotCast = errors.New("cast failed") 7 errDestinationTypeIsNotAPointer = errors.New("destination type is not a pointer") 8 errNilDestination = errors.New("destination is nil") 9 ErrIssue1501BadUUID = errors.New("ydb: uuid storage format was broken in go SDK. Now it fixed. And you should select variant for work: typed uuid (good) or use old format with explicit wrapper for read old data") //nolint:lll 10 )