summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/TypeAccessException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/TypeAccessException.cs')
-rw-r--r--src/mscorlib/src/System/TypeAccessException.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/mscorlib/src/System/TypeAccessException.cs b/src/mscorlib/src/System/TypeAccessException.cs
deleted file mode 100644
index 32afbdfeb8..0000000000
--- a/src/mscorlib/src/System/TypeAccessException.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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) { }
- }
-}