Building Parsers with Java

sjm.examples.logic
Class LogikusException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--sjm.examples.logic.LogikusException

public class LogikusException
extends java.lang.RuntimeException

Signals a problem parsing the text of a Logikus program or query.

See Also:
Serialized Form

Constructor Summary
LogikusException()
          Constructs a LogikusException with no detail message.
LogikusException(java.lang.String s)
          Constructs a LogikusException with the specified detail 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

LogikusException

public LogikusException()
Constructs a LogikusException with no detail message.

LogikusException

public LogikusException(java.lang.String s)
Constructs a LogikusException with the specified detail message.
Parameters:
String - the detail message.

by Steve Metsker