Java Exceptions Flashcards
1
Q
Throwable Constructors
A
- Throwable()
- Throwable(String message)
- Throwable(String message, Throwable cause)
- Throwable(String message, Throwable cause, boolean enableSuppression, boolean
writableStackTrace) - Throwable(Throwable cause)
2
Q
Throwable Subclasses
A
- public class Error
- public class Exception
3
Q
Throwable implements
A
Serializable
4
Q
Unchecked exception subclasses
A
- Error
- RuntimeException [extends Exception]