these commits will add the full Microsoft.JScript public API. Now only last to fill...
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / ErrorPrototype.cs
1 //
2 // ErrorPrototype.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
11 {
12         using System;
13
14         public class ErrorPrototype : JSObject
15         {
16                 public readonly string name;
17
18                 public ErrorConstructor constructor {
19                         get { throw new NotImplementedException (); }
20                 }
21
22
23                 public static string toString (object thisObj)
24                 {
25                         throw new NotImplementedException ();
26                 }
27         }
28 }