1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 12:40:03 +02:00

chore: update roadmap content json (#8312)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-03-10 18:43:41 +06:00
committed by GitHub
parent 475cb85600
commit 2c39611b47

View File

@@ -736,11 +736,6 @@
"title": "Exception Handling",
"description": "Exception Handling in Java is one of the effective means to handle the runtime errors so that the regular flow of the application can be preserved. Java Exception Handling is a mechanism to handle runtime errors such as ClassNotFoundException, IOException, SQLException, RemoteException, etc.\n\nThere are three types of exceptions -\n\n1. Checked Exception - exceptions checked at compile time. Example - IOException\n2. Unchecked Exception - exceptions checked at run time. Example - NullPointerException\n3. Error - It is irrecoverable. Example - OutOfMemoryError\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Mastering Java Exception Handling: A Comprehensive Guide",
"url": "https://naveen-metta.medium.com/mastering-java-exception-handling-a-comprehensive-guide-a897b8020582",
"type": "article"
},
{
"title": "Exception Handling in Java",
"url": "https://www.javatpoint.com/exception-handling-in-java",