2009-04-28 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mono / metadata / exception.h
index 7f191d1989b9c3371a2dc9a64923b0631d182c34..58fe1141600ba4b5b0a520e35ba8b928343192ef 100644 (file)
@@ -25,6 +25,10 @@ MonoException *
 mono_exception_from_name_msg          (MonoImage *image, const char *name_space,
                                        const char *name, const char *msg);
 
+MonoException *
+mono_exception_from_token_two_strings (MonoImage *image, guint32 token,
+                                                                          MonoString *a1, MonoString *a2);
+
 extern MonoException *
 mono_exception_from_name_domain        (MonoDomain *domain, MonoImage *image, 
                                        const char* name_space, 
@@ -126,6 +130,15 @@ mono_get_exception_bad_image_format2 (const char *msg, MonoString *fname);
 MonoException *
 mono_get_exception_stack_overflow (void);
 
+MonoException *
+mono_get_exception_out_of_memory (void);
+
+MonoException *
+mono_get_exception_field_access (void);
+
+MonoException *
+mono_get_exception_method_access (void);
+
 MonoException *
 mono_get_exception_reflection_type_load (MonoArray *types, MonoArray *exceptions);