com.acsinet_solutions.util.regexp
Class RegexpMatchException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.acsinet_solutions.util.regexp.RegexpMatchException
All Implemented Interfaces:
java.io.Serializable

public final class RegexpMatchException
extends java.lang.Exception

Denotes a match exception failure. Match exceptions may be avoided using test() before apply() to avoid exception throwing or testAndApply() method that fail silently returning a null ( in Perl5Regexp class ).

Author:
Santiago Arriaga
See Also:
Perl5Regexp, Serialized Form

Constructor Summary
RegexpMatchException(java.lang.String message)
          Constructor for RegexpMatchException.
RegexpMatchException(java.lang.String message, java.lang.Throwable throwable)
          Constructor for RegexpMatchException.
 
Method Summary
 
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

RegexpMatchException

public RegexpMatchException(java.lang.String message)
Constructor for RegexpMatchException.


RegexpMatchException

public RegexpMatchException(java.lang.String message,
                            java.lang.Throwable throwable)
Constructor for RegexpMatchException.