Merge pull request #1345 from mattleibow/websocket-continuation-frame-fix
[mono.git] / mono / metadata / exception-internals.h
1 #ifndef _MONO_METADATA_EXCEPTION_INTERNALS_H_
2 #define _MONO_METADATA_EXCEPTION_INTERNALS_H_
3
4 #include <glib.h>
5
6 #include <mono/metadata/object.h>
7 #include <mono/utils/mono-error.h>
8
9 MonoException *
10 mono_get_exception_type_initialization_checked (const gchar *type_name, MonoException *inner, MonoError *error);
11
12 MonoException *
13 mono_get_exception_reflection_type_load_checked (MonoArray *types, MonoArray *exceptions, MonoError *error);
14
15 MonoException *
16 mono_get_exception_runtime_wrapped_checked (MonoObject *wrapped_exception, MonoError *error);
17
18 #endif