2022-03-02 06:24:55 -05:00
|
|
|
package pwgenerator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-03-03 04:26:44 -05:00
|
|
|
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
|
|
|
)
|