mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8048190: NoClassDefFoundError omits original ExceptionInInitializerError
Reviewed-by: dholmes, iklam
This commit is contained in:
parent
7e14c3cc11
commit
464e874a5c
9 changed files with 255 additions and 13 deletions
|
@ -563,6 +563,10 @@ class java_lang_Throwable: AllStatic {
|
|||
static void fill_in_stack_trace(Handle throwable, const methodHandle& method = methodHandle());
|
||||
// Programmatic access to stack trace
|
||||
static void get_stack_trace_elements(Handle throwable, objArrayHandle stack_trace, TRAPS);
|
||||
|
||||
// For recreating class initialization error exceptions.
|
||||
static Handle get_cause_with_stack_trace(Handle throwable, TRAPS);
|
||||
|
||||
// Printing
|
||||
static void print(oop throwable, outputStream* st);
|
||||
static void print_stack_trace(Handle throwable, outputStream* st);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue