Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


ExceptionInInitializerErrorjava.lang

Java 1.1serializable error


This
error is thrown by the Java Virtual Machine when an exception occurs
in the static initializer of a class. You can use the
getException( ) method to obtain the
Throwable object that was thrown from the
initializer. In Java 1.4 and later, getException(
) has been superseded by the more general
getCause( ) method of the
THRowable class.


Figure 10-22. java.lang.ExceptionInInitializerError

public class

ExceptionInInitializerError extends LinkageError {
// Public Constructors
public

ExceptionInInitializerError ( );
public

ExceptionInInitializerError (String

s );
public

ExceptionInInitializerError (Throwable

thrown );
// Public Instance Methods
public Throwable

getException ( ); default:null
// Public Methods Overriding Throwable

1.4 public Throwable

getCause ( ); default:null
}



    / 1191