public class TypeConstraintException extends 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 JAXB 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(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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace
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 exceptionpublic 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
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.