public class TypeConstraintException
extends java.lang.RuntimeException
This exception can be thrown by the generated setter methods of the schema derived Java content classes. However, since fail-fast validation is an optional feature for Jakarta XML Binding Providers to support, not all setter methods will throw this exception when a type constraint is violated.
If this exception is throw while invoking a fail-fast setter, the value of the property is guaranteed to remain unchanged, as if the setter were never called.
ValidationEvent
,
Serialized FormConstructor and Description |
---|
TypeConstraintException(java.lang.String message)
Construct a TypeConstraintException with the specified detail message.
|
TypeConstraintException(java.lang.String message,
java.lang.String errorCode)
Construct a TypeConstraintException with the specified detail message and vendor
specific errorCode.
|
TypeConstraintException(java.lang.String message,
java.lang.String errorCode,
java.lang.Throwable exception)
Construct a TypeConstraintException with the specified detail message,
vendor specific errorCode, and linkedException.
|
TypeConstraintException(java.lang.String message,
java.lang.Throwable exception)
Construct a TypeConstraintException with the specified detail message and
linkedException.
|
TypeConstraintException(java.lang.Throwable exception)
Construct a TypeConstraintException with a linkedException.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getErrorCode()
Get the vendor specific error code
|
java.lang.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(java.io.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(java.lang.Throwable exception)
Add a linked Exception.
|
java.lang.String |
toString()
Returns a short description of this TypeConstraintException.
|
public TypeConstraintException(java.lang.String message)
message
- a description of the exceptionpublic TypeConstraintException(java.lang.String message, java.lang.String errorCode)
message
- a description of the exceptionerrorCode
- a string specifying the vendor specific error codepublic TypeConstraintException(java.lang.Throwable exception)
exception
- the linked exceptionpublic TypeConstraintException(java.lang.String message, java.lang.Throwable exception)
message
- a description of the exceptionexception
- the linked exceptionpublic TypeConstraintException(java.lang.String message, java.lang.String errorCode, java.lang.Throwable exception)
message
- a description of the exceptionerrorCode
- a string specifying the vendor specific error codeexception
- the linked exceptionpublic java.lang.String getErrorCode()
public java.lang.Throwable getLinkedException()
public void setLinkedException(java.lang.Throwable exception)
exception
- the linked Exception (A null value is permitted and
indicates that the linked exception does not exist or
is unknown).public java.lang.String toString()
toString
in class java.lang.Throwable
public void printStackTrace(java.io.PrintStream s)
printStackTrace
in class java.lang.Throwable
s
- PrintStream to use for outputpublic void printStackTrace()
System.err
.printStackTrace
in class java.lang.Throwable