EAF 7.6 API

com.lutris.appserver.server.httpPresentation
Class HttpPresentationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.lutris.util.ChainedException
              extended by 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

Constructor Summary
HttpPresentationException(java.lang.String msg)
          Construct a HTTP exception without a specified cause.
HttpPresentationException(java.lang.String msg, java.lang.Throwable cause)
          Construct a HTTP exception with an associated causing exception.
HttpPresentationException(java.lang.Throwable cause)
          Construct a HTTP exception from a causing exception.
 
Method Summary
 
Methods inherited from class com.lutris.util.ChainedException
getCause, getMessage, printStackTrace, printStackTrace, printStackTrace
 
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
 

Constructor Detail

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.

EAF 7.6 API