|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||
JavaTM Platform, Enterprise Edition, v 5.0
javax.xml.bind
|
Constructor Summary | |
---|---|
TypeConstraintException(String message)
Construct a TypeConstraintException with the specified detail message. |
|
TypeConstraintException(String message,
String errorCode)
Construct a TypeConstraintException with the specified detail message and vendor specific errorCode. |
|
TypeConstraintException(String message,
String errorCode,
Throwable exception)
Construct a TypeConstraintException with the specified detail message, vendor specific errorCode, and linkedException. |
|
TypeConstraintException(String message,
Throwable exception)
Construct a TypeConstraintException with the specified detail message and linkedException. |
|
TypeConstraintException(Throwable exception)
Construct a TypeConstraintException with a linkedException. |
Method Summary | |
---|---|
String |
getErrorCode()
Get the vendor specific error code |
Throwable |
getLinkedException()
Get the linked exception |
void |
printStackTrace()
Prints this TypeConstraintException and its stack trace (including the stack trace of the linkedException if it is non-null) to System.err. |
void |
printStackTrace(PrintStream s)
Prints this TypeConstraintException and its stack trace (including the stack trace of the linkedException if it is non-null) to the PrintStream. |
void |
setLinkedException(Throwable exception)
Add a linked Exception. |
String |
toString()
Returns a short description of this TypeConstraintException. |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TypeConstraintException(String message)
message
- a description of the exceptionpublic TypeConstraintException(String message, String errorCode)
message
- a description of the exceptionerrorCode
- a string specifying the vendor specific error codepublic TypeConstraintException(Throwable exception)
exception
- the linked exceptionpublic TypeConstraintException(String message, Throwable exception)
message
- a description of the exceptionexception
- the linked exceptionpublic TypeConstraintException(String message, String errorCode, Throwable exception)
message
- a description of the exceptionerrorCode
- a string specifying the vendor specific error codeexception
- the linked exceptionMethod Detail |
---|
public String getErrorCode()
public Throwable getLinkedException()
public void setLinkedException(Throwable exception)
exception
- the linked Exception (A null value is permitted and
indicates that the linked exception does not exist or
is unknown).public String toString()
public void printStackTrace(PrintStream s)
printStackTrace
in class Throwable
s
- PrintStream to use for outputpublic void printStackTrace()
printStackTrace
in class Throwable