Package nu.xom.xinclude
Class NoIncludeLocationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
nu.xom.xinclude.XIncludeException
nu.xom.xinclude.NoIncludeLocationException
- All Implemented Interfaces:
Serializable
Indicates that an xinclude:include
element has neither
an href
attribute nor an xpointer
attribute.
- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoIncludeLocationException
(String message) Constructs aNoIncludeLocationException
with the specified message.NoIncludeLocationException
(String message, String uri) Creates a newNoIncludeLocationException
with a detail message, line and column numbers, and a URI of the document that caused the exception.NoIncludeLocationException
(String message, Throwable cause) Constructs aNoIncludeLocationException
with the specified detail message and root cause. -
Method Summary
Methods inherited from class nu.xom.xinclude.XIncludeException
getCause, getURI, initCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoIncludeLocationException
Constructs a
NoIncludeLocationException
with the specified message.- Parameters:
message
- a string indicating the specific problem
-
NoIncludeLocationException
Constructs a
NoIncludeLocationException
with the specified detail message and root cause.- Parameters:
message
- a string indicating the specific problemcause
- the initial exception that caused thisNoIncludeLocationException
-
NoIncludeLocationException
Creates a new
NoIncludeLocationException
with a detail message, line and column numbers, and a URI of the document that caused the exception.- Parameters:
message
- a string indicating the specific problemuri
- the URI of the document that caused this exception
-