anima.context.exception
Class ContextException

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

public class ContextException
extends java.lang.Exception

This class casts a ContextException and defines four constructors and extends class Exception

See Also:
Serialized Form

Constructor Summary
ContextException()
          Constructor default
public ContextException() { }
ContextException(java.lang.String arg0)
          Constructor receives
ContextException(java.lang.String arg0, java.lang.Throwable arg1)
          Constructor receives two parameters
ContextException(java.lang.Throwable arg0)
          Constructor receives
 
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

ContextException

public ContextException()
Constructor default
public ContextException()
    {

    }
 


ContextException

public ContextException(java.lang.String arg0)
Constructor receives

Parameters:
arg0 - (String)
public ContextException(String arg0)
    {
        super(arg0);

    }
 

ContextException

public ContextException(java.lang.Throwable arg0)
Constructor receives

Parameters:
arg0 - (Throwable)
public ContextException(Throwable arg0)
    {
        super(arg0);

    }
 

ContextException

public ContextException(java.lang.String arg0,
                        java.lang.Throwable arg1)
Constructor receives two parameters

Parameters:
arg0 - (String)
arg1 - (Throwable)
public ContextException(String arg0, Throwable arg1)
    {
        super(arg0, arg1);

    }
 


Copyright © 2007. All Rights Reserved.