errdefs

package
v0.1.13 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 12, 2026 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// Permissions
	ErrInvalidInput = NewCustomError(ErrTypeInvalidInput, "")
	ErrNotFound     = NewCustomError(ErrTypeNotFound, "")
)

Errors

View Source
var HumaErrorFunc = func(status int, message string, errs ...error) huma.StatusError {
	details := make([]string, len(errs))
	for i, err := range errs {
		details[i] = err.Error()
	}
	return &ResponseError{
		Status:  status,
		Message: message,
		Details: details,
	}
}

Functions

This section is empty.

Types

type CustomError

type CustomError struct {
	Type    ErrorType
	Message string
}

func NewCustomError

func NewCustomError(t ErrorType, message string) *CustomError

func (*CustomError) Error

func (e *CustomError) Error() string

func (*CustomError) Is

func (e *CustomError) Is(target error) bool

type ErrorType

type ErrorType int
const (
	ErrTypeInvalidInput ErrorType = iota
	ErrTypeNotFound
)

More dynamic errors

func (ErrorType) String

func (e ErrorType) String() string

type ResponseError

type ResponseError struct {
	Status  int      `json:"status"`
	Message string   `json:"message"`
	Details []string `json:"details,omitempty"`
}

Huma response error

func (*ResponseError) Error

func (e *ResponseError) Error() string

func (*ResponseError) GetStatus

func (e *ResponseError) GetStatus() int

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL