Class LoginAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.fiap.tech_challenge.parte1.ms_users.exceptions.LoginAlreadyExistsException
- All Implemented Interfaces:
Serializable
Exception thrown when an attempt is made to register or use a login
that already exists in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLoginAlreadyExistsException(String message) Constructs a new LoginAlreadyExistsException 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
-
LoginAlreadyExistsException
Constructs a new LoginAlreadyExistsException with the specified detail message.- Parameters:
message- the detail message explaining the login conflict
-