Package edu.hm.hafner.analysis
Class ParsingCanceledException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.hm.hafner.analysis.ParsingCanceledException
-
- All Implemented Interfaces:
Serializable
public class ParsingCanceledException extends RuntimeException
Indicates that parsing has been canceled due to a user initiated interrupt.- Author:
- Ullrich Hafner
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParsingCanceledException()Creates a new instance ofParsingCanceledException.ParsingCanceledException(Throwable cause)Creates a new instance ofParsingCanceledException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ParsingCanceledException
public ParsingCanceledException()
Creates a new instance ofParsingCanceledException.
-
ParsingCanceledException
public ParsingCanceledException(Throwable cause)
Creates a new instance ofParsingCanceledException.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method).
-
-