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:
java.io.Serializable
public class NoIncludeLocationException extends XIncludeException
Indicates that an
xinclude:includeelement has neither anhrefattribute nor anxpointerattribute.- Version:
- 1.1b3
- Author:
- Elliotte Rusty Harold
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoIncludeLocationException(java.lang.String message)Constructs aNoIncludeLocationExceptionwith the specified message.NoIncludeLocationException(java.lang.String message, java.lang.String uri)Creates a newNoIncludeLocationExceptionwith a detail message, line and column numbers, and a URI of the document that caused the exception.NoIncludeLocationException(java.lang.String message, java.lang.Throwable cause)Constructs aNoIncludeLocationExceptionwith the specified detail message and root cause.
-
Method Summary
-
Methods inherited from class nu.xom.xinclude.XIncludeException
getCause, getURI, initCause
-
-
-
-
Constructor Detail
-
NoIncludeLocationException
public NoIncludeLocationException(java.lang.String message)
Constructs a
NoIncludeLocationExceptionwith the specified message.- Parameters:
message- a string indicating the specific problem
-
NoIncludeLocationException
public NoIncludeLocationException(java.lang.String message, java.lang.Throwable cause)Constructs a
NoIncludeLocationExceptionwith the specified detail message and root cause.- Parameters:
message- a string indicating the specific problemcause- the initial exception that caused thisNoIncludeLocationException
-
NoIncludeLocationException
public NoIncludeLocationException(java.lang.String message, java.lang.String uri)Creates a new
NoIncludeLocationExceptionwith 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
-
-