| 
Java™ Platform Standard Ed. 6  | 
|||||||||
| 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
javax.xml.bind.TypeConstraintException
public class TypeConstraintException
This exception indicates that a violation of a dynamically checked type constraint was detected.
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 Form| 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 exception| Method 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 Throwables - PrintStream to use for outputpublic void printStackTrace()
printStackTrace in class Throwable
  | 
Java™ Platform Standard Ed. 6  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.