org.weborganic.schematron
Class SchematronException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.weborganic.schematron.SchematronException
All Implemented Interfaces:
Serializable

public final class SchematronException
extends Exception

Classes of exceptions occurring while preparing or performing Schematron validation.

Note that failed Schematron assertions are not considered to be errors.

See Also:
Serialized Form

Constructor Summary
SchematronException()
          Creates a new Schematron exception.
SchematronException(String message)
          Creates a new Schematron exception.
SchematronException(String message, Throwable cause)
          Creates a new Schematron exception.
SchematronException(Throwable cause)
          Creates a new Schematron exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SchematronException

public SchematronException()
Creates a new Schematron exception.


SchematronException

public SchematronException(String message)
Creates a new Schematron exception.

Parameters:
message - A message explaining the cause of the error.

SchematronException

public SchematronException(Throwable cause)
Creates a new Schematron exception.

Parameters:
cause - The original error causing the exception.

SchematronException

public SchematronException(String message,
                           Throwable cause)
Creates a new Schematron exception.

Parameters:
message - A message explaining the cause of the error.
cause - The original error causing the exception.