mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-13 04:43:21 +00:00
10 lines
135 B
Go
10 lines
135 B
Go
|
|
package errors
|
||
|
|
|
||
|
|
type WrongPasswordError struct {
|
||
|
|
FailedAttempts int32
|
||
|
|
}
|
||
|
|
|
||
|
|
func (wpe *WrongPasswordError) Error() string {
|
||
|
|
return ""
|
||
|
|
}
|