JDK source (13) -Throwable

I. Overview

Throwable: is used to represent anything that can be thrown as an exception class. There are two important subclasses of Exception and Eerror. Both are important subclass of Java exception handling, and both also contain many important subclasses. Typically used to indicate an abnormal condition occurs. Class definition:

public class Throwable implements Serializable

Second, the common analytical method

constant

Guess you like

Origin blog.csdn.net/m0_37609579/article/details/103642430