Package org.apache.regexp
Class RESyntaxException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.regexp.RESyntaxException
-
- All Implemented Interfaces:
Serializable
public class RESyntaxException extends RuntimeException
Exception thrown to indicate a syntax error in a regular expression. This is a non-checked exception because you should only have problems compiling a regular expression during development. If you are making regular expresion programs dynamically then you can catch it if you wish. But should not be forced to.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RESyntaxException(String s)Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
RESyntaxException
public RESyntaxException(String s)
Constructor.- Parameters:
s- Further description of the syntax error
-
-