Class RegexpSyntaxException
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.
Inherited Members
Namespace: System.Text.RegularExpressions
Assembly: System.Text.RegularExpressions.dll
Syntax
public class RegexpSyntaxException : Exception
Constructors
RegexpSyntaxException(string)
Constructor
Declaration
public RegexpSyntaxException(string s)
Parameters
Type | Name | Description |
---|---|---|
string | s | Further description of the syntax error |