public class JDFException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
JDFException(java.lang.String message)
constructor the id is calculated as a hash code
|
JDFException(java.lang.String message,
boolean bPrintStack)
Deprecated.
print the stack trace in the application
|
JDFException(java.lang.String message,
int _id)
constructor if a stack trace is needed use JDFException (String message, boolean bPrintStack)
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
equals that includes the value of id
|
int |
getID()
return a unique identifier of this exception if id was not explicitley set, a hash code is returned
|
int |
hashCode() |
java.lang.String |
toString()
toString - StringRepresentation of JDFNode
|
public JDFException(java.lang.String message)
message - the message to print outpublic JDFException(java.lang.String message,
int _id)
message - _id - id of the exception - never use id=0, since this is the flag to use the has code as id@Deprecated
public JDFException(java.lang.String message,
boolean bPrintStack)
message - bPrintStack - print Stacktrace if truepublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - Object.equals(java.lang.Object)public int hashCode()
hashCode in class java.lang.ObjectObject.hashCode()public java.lang.String toString()
toString in class java.lang.Throwablepublic int getID()