/**@class java.lang.ExceptionInInitializerError
@extends java.lang.LinkageError

 Thrown when an exception occurs during class initialization.
*/
var ExceptionInInitializerError = {

/**Returns the exception that is the cause of this error.
@return {Object {java.lang.Throwable}} the exception that caused this error.
*/
getException : function(  ) {},

/**Returns the cause of this error, or {@code null} if there is no cause.
@return {Object {java.lang.Throwable}} the exception that caused this error.
*/
getCause : function(  ) {},


};