Add new tests from Juraj
[mono.git] / mcs / class / System / System.Text.RegularExpressions / RegexRunnerFactory.cs
1 //\r
2 // assembly:    System\r
3 // namespace:   System.Text.RegularExpressions\r
4 // file:        RegexRunnerFactory.cs\r
5 //\r
6 // author:      Dan Lewis (dihlewis@yahoo.co.uk)\r
7 //              (c) 2002\r
8 \r
9 using System;\r
10 \r
11 namespace System.Text.RegularExpressions {\r
12         \r
13         public abstract class RegexRunnerFactory {\r
14                 protected RegexRunnerFactory () {\r
15                         throw new NotImplementedException ("RegexRunnerFactory is not supported by Mono.");\r
16                 }\r
17 \r
18                 protected internal abstract RegexRunner CreateInstance ();\r
19         }\r
20 }\r