goldengine.java
Class ParserException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--goldengine.java.ParserException
All Implemented Interfaces:
java.io.Serializable

public class ParserException
extends java.lang.Exception

-------------------------------------------------------------------------------------------
Source File: ParserException.java
Author: Matthew Hawkins
Description: A specialised Exception class that will be thrown in all cases when a normal exception would of been thrown.
-------------------------------------------------------------------------------------------
Revision List

      Author          Version         Description
      ------          -------         -----------
      MPH             1.0             First Issue

-------------------------------------------------------------------------------------------
IMPORT: NONE
-------------------------------------------------------------------------------------------

See Also:
Serialized Form

Constructor Summary
ParserException()
          ParserException The default constructor gives a default message.
ParserException(java.lang.String text)
          ParserException This constructor gives a user defined message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ParserException

public ParserException()
ParserException The default constructor gives a default message.

ParserException

public ParserException(java.lang.String text)
ParserException This constructor gives a user defined message.