Class EmailAlreadyRegistered
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- in.cs699.tensors.delagram.auth_service.exception.EmailAlreadyRegistered
-
- All Implemented Interfaces:
Serializable
public class EmailAlreadyRegistered extends Exception
A custom exception to express the error that the email-id has already been used for registration- Author:
- mayankkakad
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EmailAlreadyRegistered()
The default constructorEmailAlreadyRegistered(String message, org.springframework.http.HttpStatus status)
The parametrized constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.HttpStatus
getStatus()
A method to get the HTTP status which represents the type of error-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EmailAlreadyRegistered
public EmailAlreadyRegistered()
The default constructor
-
EmailAlreadyRegistered
public EmailAlreadyRegistered(String message, org.springframework.http.HttpStatus status)
The parametrized constructor- Parameters:
message
- The error messagestatus
- The HTTP Status code representing the form of issue
-
-