com.lutris.appserver.server.httpPresentation
Class HttpPresentationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.lutris.util.ChainedException
com.lutris.appserver.server.httpPresentation.HttpPresentationException
- All Implemented Interfaces:
- ChainedThrowable, java.io.Serializable
- Direct Known Subclasses:
- DirectoryException
public class HttpPresentationException
- extends ChainedException
Exception that encapulates any error that occurs when accessing HTTP
information supplied to a presentation object.
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
HttpPresentationException
public HttpPresentationException(java.lang.String msg)
- Construct a HTTP exception without a specified cause.
- Parameters:
msg
- the message associated with the exception.
HttpPresentationException
public HttpPresentationException(java.lang.String msg,
java.lang.Throwable cause)
- Construct a HTTP exception with an associated causing exception.
- Parameters:
msg
- the message associated with the exception.cause
- the error or exception that cause this
exception.
HttpPresentationException
public HttpPresentationException(java.lang.Throwable cause)
- Construct a HTTP exception from a causing exception.
- Parameters:
cause
- the error or exception that cause this
exception. The message will be take be this object's
messasge.