|
||||||||||
| 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.context.exception.ContextException
public class ContextException
This class casts a ContextException and defines four constructors and extends class Exception
| 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 |
|---|
public ContextException()
public ContextException()
{
}
public ContextException(java.lang.String arg0)
arg0 - (String)
public ContextException(String arg0)
{
super(arg0);
}
public ContextException(java.lang.Throwable arg0)
arg0 - (Throwable)
public ContextException(Throwable arg0)
{
super(arg0);
}
public ContextException(java.lang.String arg0,
java.lang.Throwable arg1)
arg0 - (String)arg1 - (Throwable)
public ContextException(String arg0, Throwable arg1)
{
super(arg0, arg1);
}
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||