Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RuntimeAugments.cs « corert « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c1dc3f3cb93d7b2c59f83f3f21214e97c514c73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Reflection;

namespace Internal.Runtime.Augments {
	partial class RuntimeAugments {
		private static ReflectionExecutionDomainCallbacks s_reflectionExecutionDomainCallbacks = new ReflectionExecutionDomainCallbacks ();

		public static void ReportUnhandledException (Exception exception)
		{
			throw exception;
		}

		internal static ReflectionExecutionDomainCallbacks Callbacks => s_reflectionExecutionDomainCallbacks;
	}

	partial class ReflectionExecutionDomainCallbacks {
		internal Exception CreateMissingMetadataException (Type attributeType) 
		{
			return new MissingMetadataException ();
		}
	}
}