org.xins.common.manageable
Class BootstrapException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.xins.common.manageable.BootstrapException
All Implemented Interfaces:
Serializable

public final class BootstrapException
extends Exception

Exception thrown when the bootstrapping of a Manageable object failed.

Since:
XINS 1.0.0
Version:
$Revision: 1.25 $ $Date: 2008/07/04 10:22:41 $
Author:
Ernst de Haan
See Also:
Manageable.bootstrap(org.xins.common.collections.PropertyReader), Serialized Form

Constructor Summary
BootstrapException(String message)
          Constructs a new BootstrapException with the specified message.
BootstrapException(String detail, Throwable cause)
          Constructs a new BootstrapException with the specified detail message and cause exception.
BootstrapException(Throwable cause)
          Constructs a new BootstrapException with the specified cause 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

BootstrapException

public BootstrapException(String message)
Constructs a new BootstrapException with the specified message.

Parameters:
message - the detail message, or null.

BootstrapException

public BootstrapException(Throwable cause)
                   throws IllegalArgumentException
Constructs a new BootstrapException with the specified cause exception.

Parameters:
cause - the cause exception, cannot be null.
Throws:
IllegalArgumentException - if cause == null.

BootstrapException

public BootstrapException(String detail,
                          Throwable cause)
Constructs a new BootstrapException with the specified detail message and cause exception.

Parameters:
detail - the detail message, or null.
cause - the cause exception, or null.
Since:
XINS 2.1


See http://www.xins.org/.