From 22b2bcbea5ad682bdb86f0a2293f3375f531e2a7 Mon Sep 17 00:00:00 2001 From: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com> Date: Mon, 10 Mar 2025 00:10:28 +0000 Subject: [PATCH] chore: update roadmap content json --- public/roadmap-content/java.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/public/roadmap-content/java.json b/public/roadmap-content/java.json index 8f17ddd8d..9f7469de7 100644 --- a/public/roadmap-content/java.json +++ b/public/roadmap-content/java.json @@ -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",