Package org.xmlresolver.exceptions
Class CatalogUnavailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.xmlresolver.exceptions.CatalogUnavailableException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CatalogInvalidException
An unavailable catalog exception.
This exception is raised when a catalog file raises an IO exception of some kind, or if it's name is so badly formed that it can't be convered to a URI. It is not raised for simple "file not found" IO errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCatalogUnavailableException
(String message) Construct an exception with a message about what went wrong. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CatalogUnavailableException
Construct an exception with a message about what went wrong.- Parameters:
message
- A description of the underlying cause.
-