org.apache.oro.text.regex
Class MalformedPatternException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.apache.oro.text.regex.MalformedPatternException
All Implemented Interfaces:
Serializable

public class MalformedPatternException
extends Exception

Untamed: 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.4 2001/12/02 06:01:40 markm Exp $
Author:
Daniel F. Savarese
See Also:
PatternCompiler, Serialized Form

Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
MalformedPatternException()
          Enabled: Simply calls the corresponding constructor of its superclass.
MalformedPatternException(String message)
          Enabled: Simply calls the corresponding constructor of its superclass.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MalformedPatternException

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


MalformedPatternException

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

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


comments?