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

This is a Digital Library

With over 100,000 free electronic resource in Persian, Arabic and English

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


WriteAbortedExceptionjava.io

Java 1.1serializable checked

Thrown
when reading a
stream
of data that is incomplete because an exception was thrown while it
was being written. The detail field may contain
the exception that terminated the output stream. In Java 1.4 and
later, this exception can also be obtained with the standard
Throwable

getCause( ) method. The getMessage(
)
method has been overridden to include the message of this
detail exception, if any.


Figure 9-64. java.io.WriteAbortedException

public class

WriteAbortedException extends ObjectStreamException {
// Public Constructors
public

WriteAbortedException (String

s , Exception

ex );
// Public Methods Overriding Throwable

1.4 public Throwable

getCause ( );
public String

getMessage ( );
// Public Instance Fields
public Exception

detail ;
}



    / 1191