|
|||||||||
| 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
org.w3c.ddr.simple.exception.SystemException
public class SystemException
This exception represents a failure of the DDR system.
| Field Summary | |
|---|---|
static int |
CANNOT_PROCEED
Code for 'Cannot proceed'. |
protected int |
code
Represents a machine-understandable code to refine/identify the cause of the exception. |
static int |
ILLEGAL_ARGUMENT
Code for 'illegal argument'. |
| Constructor Summary | |
|---|---|
SystemException()
Constructs a SystemException instance with a default exception code. |
|
SystemException(int code,
String message)
Constructs a SystemException instance with a code and human-readable diagnostic message. |
|
SystemException(int code,
Throwable thr)
Constructs a SystemException instance with a code and Throwable object that may indicate further details of the cause of the 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 |
| Field Detail |
|---|
public static int ILLEGAL_ARGUMENT
public static int CANNOT_PROCEED
protected int code
| Constructor Detail |
|---|
public SystemException()
public SystemException(int code,
String message)
code - This should be a constant from this exception class.message - Diagnostic message intended for human reading.
public SystemException(int code,
Throwable thr)
code - This should be a constant from this exception class.thr - A Throwable object that may contain further details on the exception.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||