PWGen/pwgenerator/errs.go

12 lines
346 B
Go

package pwgenerator
import (
"errors"
)
var (
ErrBadType error = errors.New("cannot typeswitch; unsupported type")
ErrTooSmall error = errors.New("password max length too short for specified required chars")
ErrSwitchedLenLimits error = errors.New("the max password length is shorter than the minimum password length")
)