Documentation
¶
Overview ¶
Package apperr defines the "known error" marker type used throughout commit-spark. A KnownError is an error whose message is safe to print directly to the user without a stack trace or bug-report footer.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type KnownError ¶ added in v0.1.0
type KnownError struct {
Message string
}
KnownError is an error whose message is safe to print directly to the user without a stack trace or bug-report footer.
func New ¶
func New(format string, args ...any) *KnownError
New creates a *KnownError with a formatted message.
func (*KnownError) Error ¶ added in v0.1.0
func (e *KnownError) Error() string
Error implements the error interface.
Click to show internal directories.
Click to hide internal directories.