Fixed to conform to Mono standards for incomplete functionality.
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / ErrObject.cs
1 //
2 // ErrObject.cs
3 //
4 // Author:
5 //   Chris J Breisch (cjbreisch@altavista.net) 
6 //
7 // (C) 2002 Chris J Breisch
8 //
9
10 using System;
11
12 namespace Microsoft.VisualBasic \r
13 {
14         sealed public class ErrObject {
15                 // Declarations
16                 // Constructors
17                 // Properties
18                 [MonoTODO]
19                 public System.Int32 HelpContext { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
20                 [MonoTODO]
21                 public System.Int32 LastDllError {  get { throw new NotImplementedException (); } }
22                 [MonoTODO]
23                 public System.Int32 Number {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
24                 [MonoTODO]
25                 public System.Int32 Erl {  get { throw new NotImplementedException (); } }
26                 [MonoTODO]
27                 public System.String Source {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
28                 [MonoTODO]
29                 public System.String HelpFile {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
30                 [MonoTODO]
31                 public System.String Description {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
32                 // Methods
33                 [MonoTODO]
34                 public System.Exception GetException () { throw new NotImplementedException (); }
35                 [MonoTODO]
36                 public void Clear () { throw new NotImplementedException (); }
37                 [MonoTODO]
38                 public void Raise (System.Int32 Number, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Source, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Description, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpFile, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpContext) { throw new NotImplementedException (); }
39                 // Events
40         };
41 }