errdefs

package
v0.0.21 Latest Latest
Warning

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

Go to latest
Published: Jun 6, 2025 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrAlreadyBootstrapped = errors.New("already bootstrapped")
	// Permissions
	ErrUnauthorized       = errors.New("unauthorized")
	ErrGroupAlreadyExists = errors.New("group name already exists")
	ErrInvalidInput       = NewCustomError(ErrTypeInvalidInput, "")
	ErrNotFound           = NewCustomError(ErrTypeNotFound, "")
)

Errors

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

Jump to

Keyboard shortcuts

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