Documentation ¶
Index ¶
- type Basic
- type MyNotFound
- func (e *MyNotFound) Code() errors.ErrorCode
- func (e *MyNotFound) Error() string
- func (e *MyNotFound) InstanceID() uuid.UUID
- func (e MyNotFound) MarshalJSON() ([]byte, error)
- func (o MyNotFound) MarshalYAML() (interface{}, error)
- func (e *MyNotFound) Name() string
- func (e *MyNotFound) Parameters() map[string]interface{}
- func (e *MyNotFound) UnmarshalJSON(data []byte) error
- func (o *MyNotFound) UnmarshalYAML(unmarshal func(interface{}) error) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Basic ¶
type Basic struct {
Data string `json:"data"`
}
func (Basic) MarshalYAML ¶
func (*Basic) UnmarshalYAML ¶
type MyNotFound ¶
type MyNotFound struct {
// contains filtered or unexported fields
}
MyNotFound is an error type.
Something was not found.
func NewMyNotFound ¶
func NewMyNotFound(safeArgA Basic, safeArgB []int, type_ string, unsafeArgA string, unsafeArgB *string) *MyNotFound
NewMyNotFound returns new instance of MyNotFound error.
func (*MyNotFound) Code ¶
func (e *MyNotFound) Code() errors.ErrorCode
Code returns an enum describing error category.
func (*MyNotFound) Error ¶
func (e *MyNotFound) Error() string
func (*MyNotFound) InstanceID ¶
func (e *MyNotFound) InstanceID() uuid.UUID
InstanceID returns unique identifier of this particular error instance.
func (MyNotFound) MarshalJSON ¶
func (e MyNotFound) MarshalJSON() ([]byte, error)
func (MyNotFound) MarshalYAML ¶
func (o MyNotFound) MarshalYAML() (interface{}, error)
func (*MyNotFound) Name ¶
func (e *MyNotFound) Name() string
Name returns an error name identifying error type.
func (*MyNotFound) Parameters ¶
func (e *MyNotFound) Parameters() map[string]interface{}
Parameters returns a set of named parameters detailing this particular error instance.
func (*MyNotFound) UnmarshalJSON ¶
func (e *MyNotFound) UnmarshalJSON(data []byte) error
func (*MyNotFound) UnmarshalYAML ¶
Click to show internal directories.
Click to hide internal directories.