Package it.unive.lisa.imp
Class ParsingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- it.unive.lisa.imp.ParsingException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParsingException extends java.lang.Exception
An exception thrown while parsing an IMP file.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParsingException()
Builds the exception.ParsingException(java.lang.String message)
Builds the exception.ParsingException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.ParsingException(java.lang.Throwable cause)
Builds the exception.
-
-
-
Constructor Detail
-
ParsingException
public ParsingException()
Builds the exception.
-
ParsingException
public ParsingException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.- Parameters:
message
- the message of this exceptioncause
- the inner cause of this exception
-
ParsingException
public ParsingException(java.lang.String message)
Builds the exception.- Parameters:
message
- the message of this exception
-
ParsingException
public ParsingException(java.lang.Throwable cause)
Builds the exception.- Parameters:
cause
- the inner cause of this exception
-
-