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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


UndeclaredThrowableExceptionjava.lang.reflect

Java 1.3serializable unchecked

Thrown by a method of a
Proxy object if the invoke( )
method of the proxy's
InvocationHandler throws a checked exception not
declared by the original method. This class serves as an unchecked
exception wrapper around the checked exception. Use
getUndeclaredThrowable( ) to obtain the checked
exception thrown by invoke( ). In Java 1.4 and
later, all exceptions can be
"chained" in this way, and
getUndeclaredThrowable( ) is superseded by the
more general getCause( ) method.


Figure 10-103. java.lang.reflect.UndeclaredThrowableException

public class

UndeclaredThrowableException extends RuntimeException {
// Public Constructors
public

UndeclaredThrowableException (Throwable

undeclaredThrowable );
public

UndeclaredThrowableException (Throwable

undeclaredThrowable , String

s );
// Public Instance Methods
public Throwable

getUndeclaredThrowable ( );
// Public Methods Overriding Throwable

1.4 public Throwable

getCause ( );
}



    / 1191