java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.xml.crypto.URIReferenceException
- All Implemented Interfaces:
- Serializable
Indicates an exceptional condition thrown while dereferencing a
 
URIReference.
 A URIReferenceException can contain a cause: another
 throwable that caused this URIReferenceException to get thrown.
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a newURIReferenceExceptionwithnullas its detail message.URIReferenceException(String message) Constructs a newURIReferenceExceptionwith the specified detail message.URIReferenceException(String message, Throwable cause) Constructs a newURIReferenceExceptionwith the specified detail message and cause.URIReferenceException(String message, Throwable cause, URIReference uriReference) Constructs a newURIReferenceExceptionwith the specified detail message, cause andURIReference.URIReferenceException(Throwable cause) Constructs a newURIReferenceExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
- 
Method SummaryModifier and TypeMethodDescriptiongetCause()Returns the cause of thisURIReferenceExceptionornullif the cause is nonexistent or unknown.Returns theURIReferencethat was being dereferenced when the exception was thrown.voidPrints thisURIReferenceException, its backtrace and the cause's backtrace to the standard error stream.voidPrints thisURIReferenceException, its backtrace and the cause's backtrace to the specified print stream.voidPrints thisURIReferenceException, its backtrace and the cause's backtrace to the specified print writer.Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
- 
Constructor Details- 
URIReferenceExceptionpublic URIReferenceException()Constructs a newURIReferenceExceptionwithnullas its detail message.
- 
URIReferenceExceptionConstructs a newURIReferenceExceptionwith the specified detail message.- Parameters:
- message- the detail message
 
- 
URIReferenceExceptionConstructs a newURIReferenceExceptionwith the specified detail message and cause.Note that the detail message associated with causeis not automatically incorporated in this exception's detail message.- Parameters:
- message- the detail message
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
- 
URIReferenceExceptionConstructs a newURIReferenceExceptionwith the specified detail message, cause andURIReference.Note that the detail message associated with causeis not automatically incorporated in this exception's detail message.- Parameters:
- message- the detail message
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
- uriReference- the- URIReferencethat was being dereferenced when the error was encountered
- Throws:
- NullPointerException- if- uriReferenceis- null
 
- 
URIReferenceExceptionConstructs a newURIReferenceExceptionwith the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).- Parameters:
- cause- the cause (A- nullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
 
 
- 
- 
Method Details- 
getURIReferenceReturns theURIReferencethat was being dereferenced when the exception was thrown.- Returns:
- the URIReferencethat was being dereferenced when the exception was thrown, ornullif not specified
 
- 
getCauseReturns the cause of thisURIReferenceExceptionornullif the cause is nonexistent or unknown. (The cause is the throwable that caused thisURIReferenceExceptionto get thrown.)
- 
printStackTracepublic void printStackTrace()Prints thisURIReferenceException, its backtrace and the cause's backtrace to the standard error stream.- Overrides:
- printStackTracein class- Throwable
 
- 
printStackTracePrints thisURIReferenceException, its backtrace and the cause's backtrace to the specified print stream.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintStreamto use for output
 
- 
printStackTracePrints thisURIReferenceException, its backtrace and the cause's backtrace to the specified print writer.- Overrides:
- printStackTracein class- Throwable
- Parameters:
- s-- PrintWriterto use for output
 
 
-