summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs')
-rw-r--r--src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs72
1 files changed, 0 insertions, 72 deletions
diff --git a/src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs b/src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs
deleted file mode 100644
index cccf060645..0000000000
--- a/src/mscorlib/src/System/Reflection/ReflectionTypeLoadException.cs
+++ /dev/null
@@ -1,72 +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.
-
-////////////////////////////////////////////////////////////////////////////////
-////////////////////////////////////////////////////////////////////////////////
-//
-// ReflectionTypeLoadException is thrown when multiple TypeLoadExceptions may occur.
-//
-// Specifically, when you call Module.GetTypes() this causes multiple class loads to occur.
-// If there are failures, we continue to load classes and build an array of the successfully
-// loaded classes. We also build an array of the errors that occur. Then we throw this exception
-// which exposes both the array of classes and the array of TypeLoadExceptions.
-//
-//
-//
-//
-namespace System.Reflection {
-
- using System;
- using System.Runtime.Serialization;
- using System.Diagnostics.Contracts;
- [Serializable]
- public sealed class ReflectionTypeLoadException : SystemException, ISerializable {
- private Type[] _classes;
- private Exception[] _exceptions;
-
- // private constructor. This is not called.
- private ReflectionTypeLoadException()
- : base(Environment.GetResourceString("ReflectionTypeLoad_LoadFailed")) {
- SetErrorCode(__HResults.COR_E_REFLECTIONTYPELOAD);
- }
-
- public ReflectionTypeLoadException(Type[] classes, Exception[] exceptions) : base(null)
- {
- _classes = classes;
- _exceptions = exceptions;
- SetErrorCode(__HResults.COR_E_REFLECTIONTYPELOAD);
- }
-
- public ReflectionTypeLoadException(Type[] classes, Exception[] exceptions, String message) : base(message)
- {
- _classes = classes;
- _exceptions = exceptions;
- SetErrorCode(__HResults.COR_E_REFLECTIONTYPELOAD);
- }
-
- internal ReflectionTypeLoadException(SerializationInfo info, StreamingContext context) : base (info, context) {
- _classes = (Type[])(info.GetValue("Types", typeof(Type[])));
- _exceptions = (Exception[])(info.GetValue("Exceptions", typeof(Exception[])));
- }
-
- public Type[] Types {
- get {return _classes;}
- }
-
- public Exception[] LoaderExceptions {
- get {return _exceptions;}
- }
-
- public override void GetObjectData(SerializationInfo info, StreamingContext context) {
- if (info==null) {
- throw new ArgumentNullException(nameof(info));
- }
- Contract.EndContractBlock();
- base.GetObjectData(info, context);
- info.AddValue("Types", _classes, typeof(Type[]));
- info.AddValue("Exceptions", _exceptions, typeof(Exception[]));
- }
-
- }
-}