Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ErrIrrecoverable ¶
type ErrIrrecoverable struct {
Err error
}
ErrIrrecoverable represents an error that should stop the receiver.
func (*ErrIrrecoverable) Error ¶
func (e *ErrIrrecoverable) Error() string
func (*ErrIrrecoverable) Unwrap ¶
func (e *ErrIrrecoverable) Unwrap() error
Unwrap implements the new error feature introduced in Go 1.13
type ErrRecoverable ¶
type ErrRecoverable struct {
Err error
}
ErrRecoverable represents an error that can be ignored so that the receiver can continue to function.
func (*ErrRecoverable) Error ¶
func (e *ErrRecoverable) Error() string
func (*ErrRecoverable) Unwrap ¶
func (e *ErrRecoverable) Unwrap() error
Unwrap implements the new error feature introduced in Go 1.13
Click to show internal directories.
Click to hide internal directories.