2003-07-27 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / CmdLineException.cs
1 //
2 // CmdLineException.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 namespace Microsoft.JScript.Tmp
11 {
12         using System;
13         using System.Globalization;
14
15         public class CmdLineException : Exception
16         {
17                 public CmdLineException (CmdLineError errorCode, CultureInfo culture)
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22
23                 public CmdLineException (CmdLineError errorCode, string context,
24                                          CultureInfo culture)
25                 {
26                         throw new NotImplementedException ();
27                 }
28
29
30                 public override string Message {
31                         get { throw new NotImplementedException (); }
32                 }
33
34
35                 public string ResourceKey (CmdLineError errorCode)
36                 {
37                         throw new NotImplementedException ();
38                 }
39         }
40 }