java.module
Class ModuleInitializationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.module.ModuleInitializationException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
UnsatisfiedDependencyException

public class ModuleInitializationException
extends Exception

Thrown to indicate that the initialization of a Module failed.

Since:
1.7.0
Author:
Stanley M. Ho
See Also:
Serialized Form

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

ModuleInitializationException

public ModuleInitializationException(String s)
Constructs a ModuleInitializationException with the specified detail message.

Parameters:
s - the detail message.

ModuleInitializationException

public ModuleInitializationException(String s,
                                     Throwable cause)
Constructs a ModuleInitializationException with the specified detail message and cause.

Parameters:
s - the detail message.
cause - the cause.