Home / Type/ InvalidUnmarshalError Type — fiber Architecture

InvalidUnmarshalError Type — fiber Architecture

Architecture documentation for the InvalidUnmarshalError type/interface in error.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  2062dfd0_175e_3dd3_128e_252fc87169c0["InvalidUnmarshalError"]
  d39e01b3_c233_6568_8cf9_3e8674531eab["error.go"]
  2062dfd0_175e_3dd3_128e_252fc87169c0 -->|defined in| d39e01b3_c233_6568_8cf9_3e8674531eab
  style 2062dfd0_175e_3dd3_128e_252fc87169c0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

error.go lines 61–82

type (
	// InvalidUnmarshalError describes an invalid argument passed to Unmarshal.
	// (The argument to Unmarshal must be a non-nil pointer.)
	InvalidUnmarshalError = json.InvalidUnmarshalError

	// MarshalerError represents an error from calling a MarshalJSON or MarshalText method.
	MarshalerError = json.MarshalerError

	// SyntaxError is a description of a JSON syntax error.
	SyntaxError = json.SyntaxError

	// UnmarshalTypeError describes a JSON value that was
	// not appropriate for a value of a specific Go type.
	UnmarshalTypeError = json.UnmarshalTypeError

	// UnsupportedTypeError is returned by Marshal when attempting
	// to encode an unsupported value type.
	UnsupportedTypeError = json.UnsupportedTypeError

	// UnsupportedValueError exposes json.UnsupportedValueError to describe unsupported values encountered during encoding.
	UnsupportedValueError = json.UnsupportedValueError
)

Defined In

Frequently Asked Questions

What is the InvalidUnmarshalError type?
InvalidUnmarshalError is a type/interface in the fiber codebase, defined in error.go.
Where is InvalidUnmarshalError defined?
InvalidUnmarshalError is defined in error.go at line 61.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free