|
||||||||||
| 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.message.exception.MessageFactoryException
public class MessageFactoryException
This class defines a MessageFactoryException and four constructors.
Extends Exception.
| Constructor Summary | |
|---|---|
MessageFactoryException()
Constructor default public MessageFactoryException() { } |
|
MessageFactoryException(java.lang.String arg0)
Constructor receives |
|
MessageFactoryException(java.lang.String arg0,
java.lang.Throwable arg1)
Constructor receives two parameters |
|
MessageFactoryException(java.lang.Throwable arg0)
Constructor receives other type of parameter |
|
| 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 MessageFactoryException()
public MessageFactoryException()
{
}
public MessageFactoryException(java.lang.String arg0)
arg0 - (String)
public MessageFactoryException(String arg0)
{
super(arg0);
}
public MessageFactoryException(java.lang.Throwable arg0)
arg0 - (Throwable)
public MessageFactoryException(Throwable arg0)
{
super(arg0);
}
public MessageFactoryException(java.lang.String arg0,
java.lang.Throwable arg1)
arg0 - (String)arg1 - (Throwable)
public MessageFactoryException(String arg0, Throwable arg1)
{
super(arg0, arg1);
}
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||