Package org.forgerock.http
Class HttpApplicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.forgerock.http.HttpApplicationException
-
- All Implemented Interfaces:
Serializable
public class HttpApplicationException extends Exception
An exception that is thrown during a Http Application start up when the start up of the application fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpApplicationException(String message)
Constructs a new exception with the specified detail message.HttpApplicationException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.HttpApplicationException(Throwable cause)
Constructs a new exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
HttpApplicationException
public HttpApplicationException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- The detail message.
-
HttpApplicationException
public HttpApplicationException(Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- The exception which caused this exception to be thrown.
-
-