org.liquidsite.app.install
Class InstallException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.liquidsite.app.install.InstallException
All Implemented Interfaces:
java.io.Serializable

public class InstallException
extends java.lang.Exception

An installation exception. This exception is thrown when some opreration during the installation didn't work.

See Also:
Serialized Form

Constructor Summary
InstallException(java.lang.Exception cause)
          Creates a new install exception.
InstallException(java.lang.String message)
          Creates a new install exception.
InstallException(java.lang.String message, java.lang.Exception cause)
          Creates a new install exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InstallException

public InstallException(java.lang.String message)
Creates a new install exception.

Parameters:
message - the error message

InstallException

public InstallException(java.lang.Exception cause)
Creates a new install exception.

Parameters:
cause - the root cause to the error

InstallException

public InstallException(java.lang.String message,
                        java.lang.Exception cause)
Creates a new install exception.

Parameters:
message - the error message
cause - the root cause to the error