org.xoe.core.packages
Class InstallException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.xoe.core.packages.PackageException
                    |
                    +--org.xoe.core.packages.InstallException
All Implemented Interfaces:
Serializable

public class InstallException
extends PackageException

Used to indicate an error while installing a package. Can be used to wrap non-packaging specific Throwables.

See Also:
Serialized Form

Constructor Summary
InstallException(String msg)
           
InstallException(Throwable t, String msg)
           
InstallException(Throwable t, XoePackage p, String detail)
           
InstallException(XoePackage p, String detail)
           
 
Methods inherited from class org.xoe.core.packages.PackageException
printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InstallException

public InstallException(Throwable t,
                        XoePackage p,
                        String detail)

InstallException

public InstallException(XoePackage p,
                        String detail)

InstallException

public InstallException(Throwable t,
                        String msg)

InstallException

public InstallException(String msg)