Jakarta ORO

org.apache.oro.text.perl
Class MalformedPerl5PatternException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.apache.oro.text.MalformedCachePatternException
                  extended byorg.apache.oro.text.perl.MalformedPerl5PatternException
All Implemented Interfaces:
java.io.Serializable

public final class MalformedPerl5PatternException
extends MalformedCachePatternException

An exception used to indicate errors in Perl style regular expressions. It is derived from RuntimeException, and therefore does not have to be caught. You should generally make an effort to catch MalformedPerl5PatternException whenever you use dynamically generated patterns (from user input or some other source). Static expressions represented as strings in your source code don't require exception handling because as you write and test run your program you will correct any errors in those expressions when you run into an uncaught MalformedPerl5PatternException. By the time you complete your project, those static expressions will be guaranteed to be correct. However, pieces of code with expressions that you cannot guarantee to be correct should catch MalformedPerl5PatternException to ensure reliability.

Since:
1.0
Version:
2.0.9-dev-1
See Also:
MalformedPatternException, Serialized Form

Constructor Summary
MalformedPerl5PatternException()
          Simply calls the corresponding constructor of its superclass.
MalformedPerl5PatternException(java.lang.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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MalformedPerl5PatternException

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


MalformedPerl5PatternException

public MalformedPerl5PatternException(java.lang.String message)
Simply calls the corresponding constructor of its superclass.

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

Jakarta ORO

Copyright ? 2000-2004 The Apache Software Foundation. All Rights Reserved.