mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 00:27:31 +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 ""
|
|
}
|