package
0.102.4
Repository: https://github.com/holos-run/holos.git
Documentation: pkg.go.dev

# Functions

As calls errors.As.
Format calls fmt.Errorf(format, a...) then wraps the error with the source location of the caller.
Is calls errors.Is.
Join calls errors.Join.
Log logs err with Source location if Err is a ErrorAt.
New calls errors.New.
No description provided by the author
Unwrap calls errors.Unwrap.
Wrap wraps err in a ErrorAt or returns err if err is nil, already a ErrorAt, or caller info is not available.

# Variables

ErrUnsupported is errors.ErrUnsupported.

# Structs

ErrorAt wraps an error with the Source location the error was encountered at for tracing from a top level error handler.
Source represents the Source file and line where an error was encountered.