Class InvalidPasswordException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.fiap.tech_challenge.parte1.ms_users.exceptions.InvalidPasswordException
- All Implemented Interfaces:
Serializable
Exception thrown when a provided password does not meet the
required validation criteria or is considered invalid.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidPasswordException
(String message) Constructs a new InvalidPasswordException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidPasswordException
Constructs a new InvalidPasswordException with the specified detail message.- Parameters:
message
- the detail message explaining why the password is invalid
-