Package main.utils.exception
Class PasswordIncorrectException
java.lang.Object
java.lang.Throwable
java.lang.Exception
main.utils.exception.PasswordIncorrectException
- All Implemented Interfaces:
Serializable
The PasswordIncorrectException class represents an exception that is thrown when a password entered by the user is incorrect.
It extends the base Exception class.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new PasswordIncorrectException object with a default 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
-
PasswordIncorrectException
public PasswordIncorrectException()Constructs a new PasswordIncorrectException object with a default message. The default message is "Password is incorrect".
-