Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / remoting / __hresults.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6 //=============================================================================
7 //
8 // Class: __HResults
9 //
10 // Purpose: Define HResult constants. Every exception has one of these.
11 //
12 // Date: 98/08/31 11:57:11 AM
13 //
14 //===========================================================================*/
15 namespace System.Runtime.Remoting {
16     using System;
17     internal sealed class __HResults
18     {
19         public const int COR_E_REMOTING = unchecked((int)0x8013150B);
20         public const int COR_E_SERVER = unchecked((int)0x8013150E);        
21     }
22 }