EAF 6.4 API

com.lutris.appserver.server.httpPresentation
Class FilePresentationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.lutris.util.ChainedException
              extended bycom.lutris.appserver.server.httpPresentation.FilePresentationException
All Implemented Interfaces:
ChainedThrowable, java.io.Serializable

public class FilePresentationException
extends ChainedException

Encapulates any error that occurs when serving static files

See Also:
Serialized Form

Constructor Summary
FilePresentationException(java.lang.String msg, java.lang.Throwable cause)
          Construct an exception with an associated causing exception.
FilePresentationException(java.lang.Throwable cause)
          Construct an exception from a causing exception.
 
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

FilePresentationException

public FilePresentationException(java.lang.String msg,
                                 java.lang.Throwable cause)
Construct an exception with an associated causing exception.

Parameters:
msg - the message associated with the exception.
cause - the error or exception that cause this exception.

FilePresentationException

public FilePresentationException(java.lang.Throwable cause)
Construct an 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 6.4 API