All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.oroinc.text.regex.MalformedPatternException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----com.oroinc.text.regex.MalformedPatternException

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.

Copyright © 1996, 1997 Original Reusable Objects, Inc. All rights reserved.

Author:
Daniel F. Savarese
See Also:
PatternCompiler

Constructor Index

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

Constructors

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

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

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index