PWGen/pwgenerator/errs.go

12 lines
346 B
Go
Raw Normal View History

2022-03-02 06:24:55 -05:00
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")
2022-03-02 06:24:55 -05:00
)