Class InternalServerErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hawaiiframework.exception.HawaiiException
-
- org.hawaiiframework.web.exception.HttpException
-
- org.hawaiiframework.web.exception.InternalServerErrorException
-
- All Implemented Interfaces:
Serializable
public class InternalServerErrorException extends HttpException
- Since:
- 2.0.0
- Author:
- Ivan Melotte
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InternalServerErrorException()
Constructs a newInternalServerErrorException
.InternalServerErrorException(String message)
Constructs a newInternalServerErrorException
with the supplied message.InternalServerErrorException(String message, Throwable cause)
Constructs a newInternalServerErrorException
with the supplied message andThrowable
.InternalServerErrorException(Throwable cause)
Constructs a newInternalServerErrorException
with the suppliedThrowable
.
-
Method Summary
-
Methods inherited from class org.hawaiiframework.web.exception.HttpException
getHttpStatus
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InternalServerErrorException
public InternalServerErrorException()
Constructs a newInternalServerErrorException
.
-
InternalServerErrorException
public InternalServerErrorException(String message)
Constructs a newInternalServerErrorException
with the supplied message.
-
InternalServerErrorException
public InternalServerErrorException(String message, Throwable cause)
Constructs a newInternalServerErrorException
with the supplied message andThrowable
.
-
-