type notRegisteredErr …
func NewNotRegisteredErrForKind(schemeName string, gvk schema.GroupVersionKind) error { … }
func NewNotRegisteredErrForType(schemeName string, t reflect.Type) error { … }
func NewNotRegisteredErrForTarget(schemeName string, t reflect.Type, target GroupVersioner) error { … }
func NewNotRegisteredGVKErrForTarget(schemeName string, gvk schema.GroupVersionKind, target GroupVersioner) error { … }
func (k *notRegisteredErr) Error() string { … }
func IsNotRegisteredError(err error) bool { … }
type missingKindErr …
func NewMissingKindErr(data string) error { … }
func (k *missingKindErr) Error() string { … }
func IsMissingKind(err error) bool { … }
type missingVersionErr …
func NewMissingVersionErr(data string) error { … }
func (k *missingVersionErr) Error() string { … }
func IsMissingVersion(err error) bool { … }
type strictDecodingError …
func NewStrictDecodingError(errors []error) error { … }
func (e *strictDecodingError) Error() string { … }
func (e *strictDecodingError) Errors() []error { … }
func IsStrictDecodingError(err error) bool { … }
func AsStrictDecodingError(err error) (*strictDecodingError, bool) { … }