summaryrefslogtreecommitdiff
path: root/src/vm/frameworkexceptionloader.h
blob: 4c81e4a84e4259e9e9272ef519b2014e6a1720a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.

// Just the subset of functionality from the MscorlibBinder necessary for exceptions.
#ifndef _FRAMEWORKEXCEPTIONLOADER_H_
#define _FRAMEWORKEXCEPTIONLOADER_H_

#include "runtimeexceptionkind.h"

class MethodTable;

// For loading exception types that are not defined in mscorlib.dll
class FrameworkExceptionLoader
{
  public:
    //
    // Utilities for exceptions
    //

    static MethodTable *GetException(RuntimeExceptionKind kind);

    static void GetExceptionName(RuntimeExceptionKind kind, SString & exceptionName);
};

#endif // _FRAMEWORKEXCEPTIONLOADER_H_