Package org.w3c.its
Class ITSException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.w3c.its.ITSException
-
- All Implemented Interfaces:
Serializable
public class ITSException extends RuntimeException
Indicates an error while processing ITS constructs.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ITSException(String text)Creates a new exception with a given text.ITSException(Throwable e)Creates a new exception with a given parent exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ITSException
public ITSException(String text)
Creates a new exception with a given text.- Parameters:
text- Text to go with the new exception.
-
ITSException
public ITSException(Throwable e)
Creates a new exception with a given parent exception.- Parameters:
e- The parent exception.
-
-