summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared/System/TypeAccessException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/shared/System/TypeAccessException.cs')
-rw-r--r--src/mscorlib/shared/System/TypeAccessException.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/mscorlib/shared/System/TypeAccessException.cs b/src/mscorlib/shared/System/TypeAccessException.cs
new file mode 100644
index 0000000000..32afbdfeb8
--- /dev/null
+++ b/src/mscorlib/shared/System/TypeAccessException.cs
@@ -0,0 +1,34 @@
+// 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.
+
+using System.Runtime.Serialization;
+
+namespace System
+{
+ // TypeAccessException derives from TypeLoadException rather than MemberAccessException because in
+ // pre-v4 releases of the runtime TypeLoadException was used in lieu of a TypeAccessException.
+ [Serializable]
+ public class TypeAccessException : TypeLoadException
+ {
+ public TypeAccessException()
+ : base(SR.Arg_TypeAccessException)
+ {
+ HResult = __HResults.COR_E_TYPEACCESS;
+ }
+
+ public TypeAccessException(string message)
+ : base(message)
+ {
+ HResult = __HResults.COR_E_TYPEACCESS;
+ }
+
+ public TypeAccessException(string message, Exception inner)
+ : base(message, inner)
+ {
+ HResult = __HResults.COR_E_TYPEACCESS;
+ }
+
+ protected TypeAccessException(SerializationInfo info, StreamingContext context) : base(info, context) { }
+ }
+}