2003-08-06 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / COMException.cs
1 //
2 // COMException.cs - COM Exception
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System.Runtime.Serialization;
11
12 namespace System.Runtime.InteropServices {
13
14 [Serializable]
15 public class COMException : ExternalException {
16
17         public COMException () 
18                 : base () {}
19
20         public COMException (string message) 
21                 : base (message) {}
22
23         public COMException (string message, Exception inner) 
24                 : base (message, inner) {}
25
26         public COMException (string message, int errorCode) 
27                 : base (message, errorCode) {}
28
29         protected COMException (SerializationInfo info, StreamingContext context) 
30                 : base (info, context) {}
31
32         [MonoTODO()]
33         public override string ToString ()
34         {
35                 return null;
36         }
37
38
39 }