2018-05-10 08:37:03 +00:00
|
|
|
using System;
|
2019-02-04 20:11:37 +00:00
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
namespace Internal.Runtime.Augments {
|
|
|
|
partial class RuntimeAugments {
|
|
|
|
private static ReflectionExecutionDomainCallbacks s_reflectionExecutionDomainCallbacks = new ReflectionExecutionDomainCallbacks ();
|
2018-05-10 08:37:03 +00:00
|
|
|
|
|
|
|
public static void ReportUnhandledException (Exception exception)
|
|
|
|
{
|
|
|
|
throw exception;
|
|
|
|
}
|
2019-02-04 20:11:37 +00:00
|
|
|
|
|
|
|
internal static ReflectionExecutionDomainCallbacks Callbacks => s_reflectionExecutionDomainCallbacks;
|
|
|
|
}
|
|
|
|
|
|
|
|
partial class ReflectionExecutionDomainCallbacks {
|
|
|
|
internal Exception CreateMissingMetadataException (Type attributeType)
|
|
|
|
{
|
|
|
|
return new MissingMetadataException ();
|
|
|
|
}
|
2018-05-10 08:37:03 +00:00
|
|
|
}
|
|
|
|
}
|