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 SummaryConstructors Constructor Description ParserException()Creates a new instance ofParserExceptionwithout detail message.ParserException(java.lang.String msg)Constructs an instance ofParserExceptionwith the specified detail message.ParserException(java.lang.String msg, java.lang.Throwable t)Constructs an instance ofParserExceptionwith the specified detail message.ParserException(java.lang.Throwable t)Creates a new instance ofParserExceptionwithout detail message.
 - 
Method Summary- 
Methods inherited from class jmri.JmriExceptiongetErrors, getLocalizedMessage, getMessage
 
- 
 
- 
- 
- 
Constructor Detail- 
ParserExceptionpublic ParserException() Creates a new instance ofParserExceptionwithout detail message.
 - 
ParserExceptionpublic ParserException(java.lang.Throwable t) Creates a new instance ofParserExceptionwithout detail message.- Parameters:
- t- the cause
 
 - 
ParserExceptionpublic ParserException(java.lang.String msg) Constructs an instance ofParserExceptionwith the specified detail message.- Parameters:
- msg- the detail message.
 
 - 
ParserExceptionpublic ParserException(java.lang.String msg, java.lang.Throwable t) Constructs an instance ofParserExceptionwith the specified detail message.- Parameters:
- msg- the detail message.
- t- the cause
 
 
- 
 
-