anima.connector.exception
Class ConnectorFactoryException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by anima.connector.exception.ConnectorFactoryException
All Implemented Interfaces:
java.io.Serializable

public class ConnectorFactoryException
extends java.lang.Exception

This class cast exceptions for when have any problem creating an Connector.
Extends a class Exception

See Also:
Serialized Form

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

ConnectorFactoryException

public ConnectorFactoryException()
Default constructor
public ConnectorFactoryException()
    {

    }
 


ConnectorFactoryException

public ConnectorFactoryException(java.lang.String arg0)
Constructor with parameter
public ConnectorFactoryException(String arg0)
    {
        super(arg0);

    }

Parameters:
arg0 - (String)This parameter is used for create exception message.

ConnectorFactoryException

public ConnectorFactoryException(java.lang.Throwable arg0)
Constructor with other type parameter
public ConnectorFactoryException(Throwable arg0)
    {
        super(arg0);

    }
 

Parameters:
arg0 - (Throwable)This parameter is used for create exception message.

ConnectorFactoryException

public ConnectorFactoryException(java.lang.String arg0,
                                 java.lang.Throwable arg1)
Constructor with two parameters
public ConnectorFactoryException(String arg0, Throwable arg1)
    {
        super(arg0, arg1);

    }
 

Parameters:
arg0 - (String)This parameter is used for create exception message.
arg1 - (Throwable)This parameter is used for create exception message.


Copyright © 2007. All Rights Reserved.