Package org.forgerock.http
Class HttpApplicationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.http.HttpApplicationException
- All Implemented Interfaces:
 Serializable
An exception that is thrown during a Http Application start up when the start up of the application fails.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionHttpApplicationException(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.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 Details
- 
HttpApplicationException
Constructs a new exception with the specified detail message.- Parameters:
 message- The detail message.
 - 
HttpApplicationException
Constructs a new exception with the specified cause.- Parameters:
 cause- The exception which caused this exception to be thrown.
 - 
HttpApplicationException
Constructs a new exception with the specified detail message and cause.- Parameters:
 message- The detail message.cause- The exception which caused this exception to be thrown.
 
 -