├── README.md ├── lecture1/ │ ├── README.md # Lecture 1 documentation │ ├── lecture1note.md # Unit 1.1 — Java Applications (notes) │ ├── image.png # Java platform architecture diagram │ ├── ...
A) All exceptions inherit directly from Throwable. B) Error and Exception are both subclasses of Throwable, but only Error can be caught using a try-catch block. C ...