mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 20:51:44 +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 ""
|
||
|
}
|