Uses of Class
nu.xom.xinclude.XIncludeException
-
Packages that use XIncludeException Package Description nu.xom.xinclude nu.xom.xincludesupports XInclude processing of XOM documents and elements. -
-
Uses of XIncludeException in nu.xom.xinclude
Subclasses of XIncludeException in nu.xom.xinclude Modifier and Type Class Description classBadEncodingAttributeExceptionIndicates that theencodingattribute is not an EncName as defined in the XML specification, section 4.3.3, rule 81.classBadHrefAttributeExceptionIndicates that anhrefattribute contains an illegal value, such as a URI with a fragment identifier, or a syntactically incorrect IRI.classBadHTTPHeaderExceptionIndicates that anacceptoraccept-languageattribute contains C0 control characters (including linefeed, tab, or carriage return) or non-ASCII characters.classBadParseAttributeExceptionIndicates that theparseattribute has some value other thanxmlortext.classInclusionLoopExceptionIndicates that an included document attempts to include itself or one of its ancestor documents, directly or indirectly.classMisplacedFallbackExceptionIndicates that anxinclude:fallbackelement was found outside of anxinclude:includeelement.classNoIncludeLocationExceptionIndicates that anxinclude:includeelement has neither anhrefattribute nor anxpointerattribute.Methods in nu.xom.xinclude that throw XIncludeException Modifier and Type Method Description static DocumentXIncluder. resolve(Document in)Returns a copy of the document in which allxinclude:includeelements have been replaced by their referenced content.static DocumentXIncluder. resolve(Document in, Builder builder)Returns a copy of the document in which allxinclude:includeelements have been replaced by their referenced content as loaded by the builder.static voidXIncluder. resolveInPlace(Document in)Modifies a document by replacing allxinclude:includeelements by their referenced content.static voidXIncluder. resolveInPlace(Document in, Builder builder)Modifies a document by replacing allxinclude:includeelements with their referenced content as loaded by the builder.
-