145k views
2 votes
True of False - use T or FThe Exception class can be extended.

2 Answers

3 votes

Answer:

true

Step-by-step explanation:

User Camilo Acosta
by
8.3k points
1 vote

Answer:

T

Step-by-step explanation:

java.lang.Exception class can be extended. That is you can define subclasses for the Exception class. In fact all out of the box Exception classes in Java like java.io.IOException, java.lang.NumberFormatException, javax.jms.JMSException extend the base class java.lang.Exception or its subclasses. The subclassing is valid because Exception class is not declared as a final class.

User Darren Findlay
by
7.5k points