Respuesta :

Answer:

T

Explanation:

The java.lang.Throwable class implements the Serializable interface.

If a class implements an interface then all its subclasses also implicitly implement the interface.

Note that all Exception classes in Java inherit from java.lang.Throwable. Since Throwable is Serializable, by implication, all java Exception classes are also Serializable by default. That is, all exception classes can be serialized to a file or sent over the network is required.