FileDocCategorySizeDatePackage
RESyntaxException.javaAPI DocJava SE 6 API1463Tue Jun 10 00:22:24 BST 2008com.sun.org.apache.regexp.internal

RESyntaxException

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.
author
Jonathan Locke
author
Omit source code)

');
Fields Summary
Constructors Summary
public RESyntaxException(String s)
Constructor.

param
s Further description of the syntax error

        super("Syntax error: " + s);
    
Methods Summary