org.apache.oro.text.regex
Class MalformedPatternException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.apache.oro.text.regex.MalformedPatternException
All Implemented Interfaces:
Serializable

public class MalformedPatternException
extends Exception

A class used to signify the occurrence of a syntax error in a regular expression that is being compiled. The class is not declared final so that it may be subclassed for identifying more specific pattern comilation errors. However, at this point in time, this package does not subclass MalformedPatternException for any purpose. This does not preclude users and third party implementors of the interfaces of this package from subclassing it for their own purposes.

Version:
$Id: MalformedPatternException.java,v 1.1 2005/10/05 20:19:56 eytanadar Exp $
Author:
Daniel F. Savarese
See Also:
PatternCompiler, Serialized Form

Constructor Summary
MalformedPatternException()
          Simply calls the corresponding constructor of its superclass.
MalformedPatternException(String message)
          Simply calls the corresponding constructor of its superclass.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MalformedPatternException

public MalformedPatternException()
Simply calls the corresponding constructor of its superclass.


MalformedPatternException

public MalformedPatternException(String message)
Simply calls the corresponding constructor of its superclass.

Parameters:
message - A message indicating the nature of the parse error.