|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
anima.connector.exception.ConnectorFactoryException
public class ConnectorFactoryException
This class cast exceptions for
when have any problem creating an
Connector.
Extends a class Exception
| Constructor Summary | |
|---|---|
ConnectorFactoryException()
Default constructor public ConnectorFactoryException() { } |
|
ConnectorFactoryException(java.lang.String arg0)
Constructor with parameter public ConnectorFactoryException(String arg0) { super(arg0); } |
|
ConnectorFactoryException(java.lang.String arg0,
java.lang.Throwable arg1)
Constructor with two parameters public ConnectorFactoryException(String arg0, Throwable arg1) { super(arg0, arg1); } |
|
ConnectorFactoryException(java.lang.Throwable arg0)
Constructor with other type parameter public ConnectorFactoryException(Throwable arg0) { super(arg0); } |
|
| 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 |
|---|
public ConnectorFactoryException()
public ConnectorFactoryException()
{
}
public ConnectorFactoryException(java.lang.String arg0)
public ConnectorFactoryException(String arg0)
{
super(arg0);
}
arg0 - (String)This parameter is used for create exception message.public ConnectorFactoryException(java.lang.Throwable arg0)
public ConnectorFactoryException(Throwable arg0)
{
super(arg0);
}
arg0 - (Throwable)This parameter is used for create exception message.
public ConnectorFactoryException(java.lang.String arg0,
java.lang.Throwable arg1)
public ConnectorFactoryException(String arg0, Throwable arg1)
{
super(arg0, arg1);
}
arg0 - (String)This parameter is used for create exception message.arg1 - (Throwable)This parameter is used for create exception message.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||