summaryrefslogtreecommitdiff
path: root/src/vm/frameworkexceptionloader.h
blob: cbb5ea33ed81b8f990cdfc080357b13a95c4f206 (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
27
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license 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_