#include <ExceptionInInitializerError.hpp>
Inheritance diagram for ExceptionInInitializerError::
Public Methods | |
ExceptionInInitializerError () | |
ExceptionInInitializerError (Throwable throwable) | |
ExceptionInInitializerError (String *s) | |
Throwable | getException () |
Private Attributes | |
Throwable | exception |
|
Definition at line 18 of file ExceptionInInitializerError.hpp. 00018 : LinkageError() { } |
|
Definition at line 19 of file ExceptionInInitializerError.hpp. 00019 : LinkageError() 00020 { 00021 exception = throwable; 00022 } |
|
Definition at line 24 of file ExceptionInInitializerError.hpp. 00024 : LinkageError( s ) { } |
|
Definition at line 26 of file ExceptionInInitializerError.hpp. 00027 { 00028 return exception; 00029 } |
|
Definition at line 32 of file ExceptionInInitializerError.hpp. |