Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Caller ¶
Caller is the interface implemented by error types that can expose runtime caller data.
type Error ¶
type Error interface {
// Error implements error.
Error() string
// Is tests to see if the test error matches any error in the stack via
// equality comparison.
Is(error) bool
// Unwrap returns the wrapped error, if any, otherwise nil.
Unwrap() error
}
Error defines a robust error stack interface.
Click to show internal directories.
Click to hide internal directories.