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:
java.io.Serializable
- Direct Known Subclasses:
CalculateException
,CannotCallMethodException
,CannotCreateInstanceException
,ClassIsNotFoundException
,FunctionNotExistsException
,IdentifierNotExistsException
,InvalidSyntaxException
,ReflectionException
,WrongNumberOfParametersException
public class ParserException extends JmriException
The parent of all parser exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParserException()
Creates a new instance ofParserException
without detail message.ParserException(java.lang.String msg)
Constructs an instance ofParserException
with the specified detail message.ParserException(java.lang.String msg, java.lang.Throwable t)
Constructs an instance ofParserException
with the specified detail message.ParserException(java.lang.Throwable t)
Creates a new instance ofParserException
without detail message.
-
Method Summary
-
Methods inherited from class jmri.JmriException
getErrors, getLocalizedMessage, getMessage
-
-
-
-
Constructor Detail
-
ParserException
public ParserException()
Creates a new instance ofParserException
without detail message.
-
ParserException
public ParserException(java.lang.Throwable t)
Creates a new instance ofParserException
without detail message.- Parameters:
t
- the cause
-
ParserException
public ParserException(java.lang.String msg)
Constructs an instance ofParserException
with the specified detail message.- Parameters:
msg
- the detail message.
-
ParserException
public ParserException(java.lang.String msg, java.lang.Throwable t)
Constructs an instance ofParserException
with the specified detail message.- Parameters:
msg
- the detail message.t
- the cause
-
-