summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Policy/PolicyException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Security/Policy/PolicyException.cs')
-rw-r--r--src/mscorlib/src/System/Security/Policy/PolicyException.cs50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Security/Policy/PolicyException.cs b/src/mscorlib/src/System/Security/Policy/PolicyException.cs
new file mode 100644
index 0000000000..68e87f780d
--- /dev/null
+++ b/src/mscorlib/src/System/Security/Policy/PolicyException.cs
@@ -0,0 +1,50 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+//
+//
+// Use this class to throw a PolicyException
+//
+
+namespace System.Security.Policy {
+
+ using System;
+ using System.Runtime.Serialization;
+ [Serializable]
+[System.Runtime.InteropServices.ComVisible(true)]
+ public class PolicyException : SystemException
+ {
+ public PolicyException()
+
+ : base(Environment.GetResourceString( "Policy_Default" )) {
+ HResult = __HResults.CORSEC_E_POLICY_EXCEPTION;
+ }
+
+ public PolicyException(String message)
+
+ : base(message) {
+ HResult = __HResults.CORSEC_E_POLICY_EXCEPTION;
+ }
+
+ public PolicyException(String message, Exception exception)
+
+ : base(message, exception) {
+ HResult = __HResults.CORSEC_E_POLICY_EXCEPTION;
+ }
+
+ protected PolicyException(SerializationInfo info, StreamingContext context) : base (info, context) {}
+
+ internal PolicyException(String message, int hresult) : base (message)
+ {
+ HResult = hresult;
+ }
+
+ internal PolicyException(String message, int hresult, Exception exception) : base (message, exception)
+ {
+ HResult = hresult;
+ }
+
+ }
+
+}