InvalidRegExpFlagException

Summary

Represents an invalid regular expression flag exception.

Description

Represents an invalid regular expression flag exception.

Examples

Example of how this exception might be encountered
1
2
3
4
5
6
7
8
9
import System;
import System.Exceptions;
 
try {
    System.RegExp re = new System.RegExp("(?:)", "a");
}
catch(InvalidRegExpFlagException e) {
    Console.error(e);
}

Methods

Share

HTML | BBCode | Direct Link