Package jmri.jmrit.logixng.util.parser
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jmri.JmriException
jmri.jmrit.logixng.util.parser.ParserException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CalculateException,CannotCallMethodException,CannotCreateInstanceException,ClassIsNotFoundException,FunctionNotExistsException,IdentifierNotExistsException,InvalidSyntaxException,ReflectionException,WrongNumberOfParametersException
The parent of all parser exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance ofParserExceptionwithout detail message.ParserException(String msg) Constructs an instance ofParserExceptionwith the specified detail message.ParserException(String msg, Throwable t) Constructs an instance ofParserExceptionwith the specified detail message.Creates a new instance ofParserExceptionwithout detail message. -
Method Summary
Methods inherited from class jmri.JmriException
getErrors, getLocalizedMessage, getMessageMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParserException
public ParserException()Creates a new instance ofParserExceptionwithout detail message. -
ParserException
Creates a new instance ofParserExceptionwithout detail message.- Parameters:
t- the cause
-
ParserException
Constructs an instance ofParserExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
ParserException
Constructs an instance ofParserExceptionwith the specified detail message.- Parameters:
msg- the detail message.t- the cause
-