Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / exceptionservices / corruptingexceptioncommon.cs
1 #if FEATURE_CORRUPTING_EXCEPTIONS
2 // ==++==
3 // 
4 //   Copyright (c) Microsoft Corporation.  All rights reserved.
5 // 
6 // ==--==
7 /*=============================================================================
8 **
9 ** File: CorruptingExceptionCommon.cs
10 **
11 **
12 ** Purpose: Contains common usage support entities for Corrupting Exceptions
13 **
14 ** Created: 06/20/2008
15 ** 
16 ** <owner>Microsoft</owner>
17 ** 
18 =============================================================================*/
19
20 namespace System.Runtime.ExceptionServices {
21     using System;
22     
23     // This attribute can be applied to methods to indicate that ProcessCorruptedState
24     // Exceptions should be delivered to them.
25     [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
26     public sealed class HandleProcessCorruptedStateExceptionsAttribute : Attribute
27     {
28         public HandleProcessCorruptedStateExceptionsAttribute()
29         {
30         }
31     }
32 }
33 #endif // FEATURE_CORRUPTING_EXCEPTIONS