Class InternalServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- in.cs699.tensors.delagram.auth_service.exception.InternalServerException
-
- All Implemented Interfaces:
Serializable
public class InternalServerException extends Exception
A custom exception class to represent that there has been some sort of generic server error- Author:
- swaroop_nath
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InternalServerException()
The default constructorInternalServerException(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
-
InternalServerException
public InternalServerException()
The default constructor
-
InternalServerException
public InternalServerException(String message, org.springframework.http.HttpStatus status)
The parametrized constructor- Parameters:
message
- The error messagestatus
- The HTTP Status code representing the form of issue
-
-