* src/vm/exceptions.c (throw_exception_exit_intern): Removed.
[cacao.git] / src / vm / exceptions.h
index c3539cb4c7115461d202320f440013dac8446dc3..557a339899707181c3e8432c16ed78d9b290d780 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: exceptions.h 7261 2007-01-31 10:00:12Z twisti $
+   $Id: exceptions.h 7587 2007-03-28 13:29:09Z twisti $
 
 */
 
 /* load and link exceptions used in the system */
 bool exceptions_init(void);
 
-
-/* exception throwing functions */
-
-void throw_exception(void);
-void throw_exception_exit(void);
-
-void throw_main_exception(void);
-void throw_main_exception_exit(void);
-
-void throw_cacao_exception_exit(const char *exception,
-                                                               const char *message, ...);
-
-
 /* initialize new exceptions */
 
 java_objectheader *new_exception_utfmessage(const char *classname,
@@ -141,6 +128,7 @@ java_objectheader *exceptions_get_and_clear_exception(void);
 
 void exceptions_print_exception(java_objectheader *xptr);
 void exceptions_print_current_exception(void);
+void exceptions_print_stacktrace(void);
 
 #endif /* _EXCEPTIONS_H */