Building Parsers with Java

sjm.examples.regular
Class RegularExpressionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--sjm.examples.regular.RegularExpressionException

public class RegularExpressionException
extends java.lang.Exception

Signals that a given string is not recognizable as a regular expression.

See Also:
Serialized Form

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

RegularExpressionException

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

RegularExpressionException

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

by Steve Metsker