DEV Community

Cover image for Exception Handling in Java: Using Storytelling Approach
Mohamed El Laithy
Mohamed El Laithy

Posted on

Exception Handling in Java: Using Storytelling Approach

Once upon a time in the land of Java, there was a programmer named Alex. Alex loved to make apps for the villagers. One day, he made an app to help people track their fruits.

What is an Exception in Java?

But something went wrong! A villager tried to see a fruit that did not exist. The app crashed, and the villager was confused. This problem was called an exception. An exception is an error that happens when the program runs. It stops the normal flow of the app.

Advantages of Exception Handling

Alex wanted to fix this problem. He learned that handling exceptions is very important. It helps make programs safer and more reliable. With good exception handling, apps can inform users about problems instead of crashing.

Hierarchy of Java Exception Classes

Alex discovered that Java has a structure for exceptions. At the top is the Throwable class. Below it, there are two main branches: Error and Exception. Errors are serious problems, while exceptions are easier to handle.

Hierarchy of Java Exception classes Chart

Types of Java Exceptions

Alex learned there are two main types of exceptions:

  1. Checked Exceptions: These are like warnings. You must fix them before you can run the program. For example, when reading a file that may not exist.
  2. Unchecked Exceptions: These happen without warning. They usually mean there is a mistake in the code, like trying to access an index that does not exist.

Java Exception Keywords

Alex discovered some magic words to help him:

  • try: This word wraps around the code that might fail.
  • catch: This word catches the mistake if it happens.
  • finally: This word runs after try and catch, no matter what.
  • throw: This word is used to create an exception intentionally.
  • throws: This word is used in a method to say it can throw an exception.

Java Exception Handling Example

Alex wrote this code:

public class FruitTracker {
    public static void main(String[] args) {
        try {
            String[] fruits = {"Apples", "Oranges", "Bananas"};
            System.out.println(fruits[3]); // This will cause a mistake!
        } catch (ArrayIndexOutOfBoundsException e) {
            System.out.println("Oops! That fruit does not exist.");
        } finally {
            System.out.println("Check your fruits carefully!");
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

Now, if someone tried to see a fruit that wasn’t there, the app would tell them nicely instead of crashing.

Java Try-Catch Block

The try-catch block is important. The try block contains code that might fail, and the catch block handles the error.

Java Multiple Catch Block

Sometimes, there can be more than one type of error. Alex learned that he could have multiple catch blocks to handle different exceptions:

try {
    // Code that might throw different exceptions
} catch (IOException e) {
    // Handle IOException
} catch (SQLException e) {
    // Handle SQLException
}
Enter fullscreen mode Exit fullscreen mode

Java Nested Try

Alex also found out about nested try blocks. This means you can put a try block inside another try block. This helps to manage complex errors better.

Java Finally Block

The finally block is very useful. It runs no matter what. It is a good place to clean up resources, like closing a file.

Java Throw Keyword

The throw keyword allows Alex to create exceptions when something goes wrong. For example:

throw new Exception("This is a custom error!");
Enter fullscreen mode Exit fullscreen mode

Java Exception Propagation

Sometimes, an exception can move up the call stack. This is called exception propagation. If a method does not handle an exception, it can pass it to the method that called it.

Java Throws Keyword

The throws keyword is used in a method to declare that it can throw an exception. This way, the caller knows they should handle the exception.

Java Throw vs Throws

Alex learned that throw is used to create an exception, while throws is used in method signatures to indicate that a method can throw exceptions.

Java Final vs Finally vs Finalize

Alex also discovered the difference between final, finally, and finalize:

  • final: A keyword used to declare constants or prevent class inheritance.
  • finally: A block that always executes after try and catch.
  • finalize: A method called by the garbage collector before an object is removed from memory.

Java Exception Handling with Method Overriding

Alex learned that when a subclass overrides a method, it can only throw exceptions that are the same or more specific than the parent method.

Java Custom Exceptions

Finally, Alex realized he could create custom exceptions. This means he could make exceptions that fit his app’s needs. For example:

public class MyCustomException extends Exception {
    public MyCustomException(String message) {
        super(message);
    }
}
Enter fullscreen mode Exit fullscreen mode

Conclusion

Alex learned many important things about exception handling. He made his app safer and easier to use. The villagers were happy because the app worked well. Alex became a hero, and everyone in Java lived happily ever after.

Top comments (0)