anima.component.exception
Class ConnectorException

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

public class ConnectorException
extends java.lang.Exception

This class cast exceptions for when have any problem with connector Extends the class Exception

See Also:
Serialized Form

Constructor Summary
ConnectorException()
          Default constructor.
ConnectorException(java.lang.String message)
          Constructor with a personalized message.
ConnectorException(java.lang.String message, java.lang.Throwable cause)
          Constructor with a personalized message and Throwable cause.
ConnectorException(java.lang.Throwable cause)
          Constructor with a Throwable 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

ConnectorException

public ConnectorException()
Default constructor.
public ConnectorException()
    {
        super();
    }

This constructor references the super class.


ConnectorException

public ConnectorException(java.lang.String message,
                          java.lang.Throwable cause)
Constructor with a personalized message and Throwable cause.
public ConnectorException(String message, Throwable cause)
    {
        super(message, cause);
    }
 

Parameters:
message - This message that will be send.
cause - This parameter refer at motive that generated exception.

ConnectorException

public ConnectorException(java.lang.String message)
Constructor with a personalized message.
public ConnectorException(String message)
    {
        super(message);
    }

Parameters:
message - This message is receiver by constructor.
cause - This parameter refer at motive that generated exception.

ConnectorException

public ConnectorException(java.lang.Throwable cause)
Constructor with a Throwable cause.
public ConnectorException(Throwable cause)
    {
        super(cause);
    }
 

Parameters:
cause - This parameter refer at motive that generated exception.


Copyright © 2007. All Rights Reserved.