Package ddf.services.schematron
Class SchematronInitializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ddf.services.schematron.SchematronInitializationException
- All Implemented Interfaces:
Serializable
Custom exception for handling situations where Schematron Validation Service cannot initialize
correctly. This can happen if an invalid sch file is specified during initialization.
- Author:
- rodgersh
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a new SchematronInitializationException.SchematronInitializationException(String message) Instantiates a new SchematronInitializationException with specified message.SchematronInitializationException(String message, Throwable throwable) Instantiates a new SchematronInitializationException with message and throwable.SchematronInitializationException(Throwable throwable) Instantiates a new SchematronInitializationException with throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SchematronInitializationException
public SchematronInitializationException()Instantiates a new SchematronInitializationException. -
SchematronInitializationException
Instantiates a new SchematronInitializationException with specified message.- Parameters:
message- the exception message
-
SchematronInitializationException
Instantiates a new SchematronInitializationException with message and throwable.- Parameters:
message- the messagethrowable- the throwable
-
SchematronInitializationException
Instantiates a new SchematronInitializationException with throwable.- Parameters:
throwable- the throwable
-