| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.griphyn.common.util.FactoryException org.griphyn.cPlanner.partitioner.PartitionerFactoryException
PartitionerFactoryException | public class PartitionerFactoryException extends FactoryException (Code) | | Class to notify of failures while instantiating Partitioner 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.
|
PartitionerFactoryException | public PartitionerFactoryException(String msg)(Code) | | Constructs a PartitionerFactoryException with no detail
message. The associated classname is set to value specified by
DEFAULT_NAME .
Parameters: msg - the detailed message. See Also: PartitionerFactoryException.DEFAULT_NAME |
PartitionerFactoryException | public PartitionerFactoryException(String msg, String classname)(Code) | | Constructs a PartitionerFactoryException 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. |
PartitionerFactoryException | public PartitionerFactoryException(String msg, Throwable cause)(Code) | | Constructs a PartitionerFactoryException 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: PartitionerFactoryException.DEFAULT_NAME |
PartitionerFactoryException | public PartitionerFactoryException(String msg, String classname, Throwable cause)(Code) | | Constructs a PartitionerFactoryException 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. |
|
|