Versions in this module Expand all Collapse all v0 v0.1.1 May 14, 2026 Changes in this version + var ErrAccessDenied = errors.New("access denied") + var ErrAlreadyExists = errors.New("resource already exists") + var ErrInternal = errors.New("internal server error") + var ErrInvalidArgument = errors.New("invalid argument") + var ErrInvalidConfig = errors.New("invalid config") + var ErrNotFound = errors.New("resource not found") + var ErrNotImplemented = errors.New("feature not implemented") + var ErrTimeout = errors.New("operation timeout") + func Wrap(err error, message string) error + type AppError struct + Code string + Context map[string]interface{} + Err error + Message string + func NewAppError(code, message string, err error) *AppError + func (e *AppError) Error() string + func (e *AppError) Unwrap() error + func (e *AppError) WithContext(key string, value interface{}) *AppError