You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
360 B
15 lines
360 B
package pwn
|
|
|
|
// ErrEmptyPassword is an empty password error
|
|
type ErrEmptyPassword struct{}
|
|
|
|
// Error fulfills the error interface
|
|
func (e ErrEmptyPassword) Error() string {
|
|
return "password cannot be empty"
|
|
}
|
|
|
|
// IsErrEmptyPassword checks if an error is ErrEmptyPassword
|
|
func IsErrEmptyPassword(err error) bool {
|
|
_, ok := err.(ErrEmptyPassword)
|
|
return ok
|
|
}
|
|
|