summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/TypeInitializationException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/TypeInitializationException.cs')
-rw-r--r--src/mscorlib/src/System/TypeInitializationException.cs65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/TypeInitializationException.cs b/src/mscorlib/src/System/TypeInitializationException.cs
new file mode 100644
index 0000000000..1d5184123e
--- /dev/null
+++ b/src/mscorlib/src/System/TypeInitializationException.cs
@@ -0,0 +1,65 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+/*=============================================================================
+**
+**
+**
+** Purpose: The exception class to wrap exceptions thrown by
+** a type's class initializer (.cctor). This is sufficiently
+** distinct from a TypeLoadException, which means we couldn't
+** find the type.
+**
+**
+=============================================================================*/
+using System;
+using System.Runtime.Serialization;
+using System.Globalization;
+using System.Security.Permissions;
+
+namespace System {
+ [Serializable]
+[System.Runtime.InteropServices.ComVisible(true)]
+ public sealed class TypeInitializationException : SystemException {
+ private String _typeName;
+
+ // This exception is not creatable without specifying the
+ // inner exception.
+ private TypeInitializationException()
+ : base(Environment.GetResourceString("TypeInitialization_Default")) {
+ SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION);
+ }
+
+ // This is called from within the runtime. I believe this is necessary
+ // for Interop only, though it's not particularly useful.
+ private TypeInitializationException(String message) : base(message) {
+ SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION);
+ }
+
+ public TypeInitializationException(String fullTypeName, Exception innerException) : base(Environment.GetResourceString("TypeInitialization_Type", fullTypeName), innerException) {
+ _typeName = fullTypeName;
+ SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION);
+ }
+
+ internal TypeInitializationException(SerializationInfo info, StreamingContext context) : base(info, context) {
+ _typeName = info.GetString("TypeName");
+ }
+
+ public String TypeName
+ {
+ get {
+ if (_typeName == null) {
+ return String.Empty;
+ }
+ return _typeName;
+ }
+ }
+
+ [System.Security.SecurityCritical] // auto-generated_required
+ public override void GetObjectData(SerializationInfo info, StreamingContext context) {
+ base.GetObjectData(info, context);
+ info.AddValue("TypeName",TypeName,typeof(String));
+ }
+
+ }
+}