anima.component.exception
Class ComponentFactoryException

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

public class ComponentFactoryException
extends java.lang.Exception

Serial Version User ID
private static final long serialVersionUID = -856193522204342219L;
This UID creates only one identification.

See Also:
Serialized Form

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

ComponentFactoryException

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

This constructor is default and references the super class.


ComponentFactoryException

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

Parameters:
message - This is message that will be send.

ComponentFactoryException

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

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

ComponentFactoryException

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

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


Copyright © 2007. All Rights Reserved.