| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.griphyn.common.util.FactoryException org.griphyn.cPlanner.transfer.implementation.TransferImplementationFactoryException
TransferImplementationFactoryException | public class TransferImplementationFactoryException extends FactoryException (Code) | | Class to notify of failures while instantiating Transfer Implementations.
author: Karan Vahi version: $Revision: 50 $ |
Field Summary | |
final public static String | DEFAULT_NAME The default classname that is associated with the exception. |
DEFAULT_NAME | final public static String DEFAULT_NAME(Code) | | The default classname that is associated with the exception.
|
TransferImplementationFactoryException | public TransferImplementationFactoryException(String msg)(Code) | | Constructs a TransferImplementationFactoryException with no detail
message. The associated classname is set to value specified by
DEFAULT_NAME .
Parameters: msg - the detailed message. See Also: TransferImplementationFactoryException.DEFAULT_NAME |
TransferImplementationFactoryException | public TransferImplementationFactoryException(String msg, String classname)(Code) | | Constructs a TransferImplementationFactoryException with the specified detailed
message.
Parameters: msg - is the detailed message. Parameters: classname - the name of class that was trying to be instantiated orsome other signifier like module name. |
TransferImplementationFactoryException | public TransferImplementationFactoryException(String msg, Throwable cause)(Code) | | Constructs a TransferImplementationFactoryException with the
specified detailed message and a cause. The associated classname is set
to value specified by DEFAULT_NAME .
Parameters: msg - is the detailed message that is to be logged. Parameters: cause - is the cause (which is saved for later retrieval by thejava.lang.Throwable.getCause method). A null value is permitted, and indicates that the cause is nonexistent orunknown. See Also: TransferImplementationFactoryException.DEFAULT_NAME |
TransferImplementationFactoryException | public TransferImplementationFactoryException(String msg, String classname, Throwable cause)(Code) | | Constructs a TransferImplementationFactoryException with the
specified detailed message and a cause.
Parameters: msg - is the detailed message that is to be logged. Parameters: classname - the name of class that was trying to be instantiated. Parameters: cause - is the cause (which is saved for later retrieval by thejava.lang.Throwable.getCause method). A null value is permitted, and indicates that the cause is nonexistent orunknown. |
|
|