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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


Errorjava.lang

Java 1.0serializable error

This class forms
the root of the error hierarchy in Java. Subclasses of
Error, unlike subclasses of
Exception, should not be caught and generally
cause termination of the program. Subclasses of
Error need not be declared in the
throws clause of a method definition. This class
inherits methods from THRowable but declares none
of its own. Each of its constructors simply invokes the corresponding
Throwable( ) constructor. See
Throwable for details.


Figure 10-20. java.lang.Error

public class

Error extends Throwable {
// Public Constructors
public

Error ( );

1.4 public

Error (Throwable

cause );
public

Error (String

message );

1.4 public

Error (String

message , Throwable

cause );
}


Subclasses


AssertionError, LinkageError,
ThreadDeath,
VirtualMachineError,
java.lang.annotation.AnnotationFormatError,
java.nio.charset.CoderMalfunctionError,
javax.xml.parsers.FactoryConfigurationError,
javax.xml.transform.TransformerFactoryConfigurationError


    / 1191