|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jme.system.JmeException
public class JmeException
JmeException
handles all exceptions that could be thrown and
should be handled in the client software. By extending
RuntimeException
all functionality of the built-in exception
system is kept, but by applying the jME name it will be easier to visualize
what is causing the exception.
Constructor Summary | |
---|---|
JmeException()
Default constructor creates a new JmeException with out
any description of what caused the exception. |
|
JmeException(java.lang.String desc)
Constructor creates a new JmeException with a description
of the exception that will be displayed when it's thrown. |
|
JmeException(java.lang.String desc,
java.lang.Throwable cause)
Constructor creates a new JmeException with a description
of the exception that will be displayed when it's thrown and the cause of
this exception. |
|
JmeException(java.lang.Throwable cause)
Constructor creates a new JmeException with the cause of
this exception. |
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 JmeException()
JmeException
with out
any description of what caused the exception.
public JmeException(java.lang.String desc)
JmeException
with a description
of the exception that will be displayed when it's thrown.
desc
- the description of this exception.public JmeException(java.lang.Throwable cause)
JmeException
with the cause of
this exception.
cause
- the cause of this exception.public JmeException(java.lang.String desc, java.lang.Throwable cause)
JmeException
with a description
of the exception that will be displayed when it's thrown and the cause of
this exception.
desc
- the description of this exception.cause
- the cause of this exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |