Java Exception Handling

Exception:– An Exception is an unexpected error that occurs during the run-time of a program.

Error vs Exception: What is the difference?

When a program encounters an error, it means there is a significant issue that a well-designed program should not try to fix. On the other hand, an exception indicates a particular situation that a well-designed program should try to handle.

Types of Exceptions:-

Checked Exception:- This mainly includes IO Exceptions and Compile time Exceptions

Unchecked Exceptions:– This covers both Runtime Exceptions and Null Pointer Exceptions.

Handle Exceptions

try block: The try block comprises a set of statements that may throw an exception.

Catch Block: When there is an uncertain condition in the try block, the catch block comes in handy to handle it. It is mandatory to have a catch block right after the try block to handle any exceptions that may be thrown by the try block.

Finally Block: When programming in Java, the finally block is a section of code that will always run, regardless of whether or not an exception has been caught. If there is a catch block following a try block, it will be executed before the finally block. However, if there is no catch block, the finally block will be executed immediately after the try block.

Example:-

try {
// block of code to monitor for errors
// the code you think can raise an exception
} catch (ExceptionType1 exOb) {
// exception handler for ExceptionType1
} catch (ExceptionType2 exOb) {
// exception handler for ExceptionType2
}
// optional
finally { // block of code to be executed after try block ends
}

final vs finally vs finalize

Below is a table that outlines the distinctions between the terms final, finally, and finalize:

final

  • A final keyword can be used with classes, methods, and variables.
  • A final class cannot be inherited.
  • A final method cannot be overridden.
  • A final variable cannot be reassigned.

finally

  • A finally block is always executed, regardless of whether an exception is thrown or not.
  • The finally block is executed after the try block and catch block, but before the program control returns to the calling method.
  • The finally block can be used to close resources, such as files and database connections.

finalize

  • The finalize() method is called by the garbage collector when an object is no longer needed.
  • The finalize() method can be used to perform cleanup operations, such as releasing resources or writing data to a file.
  • The finalize() method is not guaranteed to be called, so it should not be used to perform critical operations.

throw keyword:- When using Java, the throw keyword is utilized to throw an exception from a block of code or a method. It is possible to throw either a checked or unchecked exception. The throw keyword is frequently used for throwing custom exceptions.

throws keyword:- If a try/catch block is not present, the throws keyword can be used to manage exceptions. This keyword specifies the specific exceptions that a method should throw if an exception happens.

Java Cheat Sheet

Java is a programming language and platform that has been widely used since its development by James Gosling in 1982. It follows the Object-oriented Programming concept and can run programs written in any programming language. Java is a high-level, object-oriented, secure, robust, platform-independent, multithreaded, and portable programming language All those words are collectively called Java Buzzwords. It is commonly used for programming web-based, window, enterprise, and mobile applications. This Java Cheat Sheet article has been written by experts in Java and based on the experience of students who have recently undergone Java interviews.

This Core Java Cheat Sheet has been designed by Java experts, based on the experience of students who have recently undergone Java interviews. Whether you are a beginner or an experienced Java developer, this Java Cheat Sheet is a valuable resource for quickly accessing essential syntax, concepts, and best practices related to Java Programming.

Similar Reads

Learn Java Programming: Basics to Advanced Concepts

Java Programming Terminologies Java Basics Java Program to Print “Hello World” Dataypes in Java Java Comments Java Variables Access Modifiers in Java Operators in Java Identifiers in Java Control Flow in Java Methods in Java Java Input-output (I/O operations) Java Polymorphism Java Inheritance Java Maths Class Typecasting In Java Arrays in Java Strings in Java Java Regex Java Exception Handling Java Commands Java Generics Java Multithreading java Collections...

1. Java Programming Terminologies

JVM:  executes the bytecode generated by the compiler. Bytecode: The Javac compiler of JDK compiles the Java source code into bytecode so that it can be executed by JVM. JDK: It is a complete Java development kit that includes everything including compiler, Java Runtime Environment (JRE), java debuggers, java docs, etc. JRE: allows the Java program to run, however, we cannot compile it. Garbage Collector: To delete or recollect that memory JVM has a program called Garbage Collector. Finalize method: this function is triggered by the garbage collector just before an object is deleted or destroyed....

2. Java Basics

Now, we will explore some of the fundamental concepts often utilized in the Java programming language....

3. Java Program to Print “Hello World”

Java // Java Program to Print // Hello World class GFG { public static void main (String[] args) { System.out.println("Hello World!"); } }...

4. Data Types in Java

...

5. Java Comments

Data Types in Java are the different values and sizes that can be stored in the variable according to the requirements....

6. Java Variables

There are three types of comments in Java...

7. Access Modifiers in Java

...

8. Operators in Java

...

9. Identifiers in Java

Variables are the containers that save the data values. Each variable is assigned according to the data type it is assigned....

10. Control Flow in Java

...

11. Methods in Java

Access modifiers help to restrict the scope of a class, constructor, variable, method, or data member. It provides security, accessibility, etc to the user depending upon the access modifier used with the element...

12. Java Input-output (I/O operations)

Comparison Operators are the Operators which return a boolean value as the result means the answer will be either true or false....

13. Java Polymorphism

The name that we give to the class, variable, and methods are formally called identifiers in Java. and for defining Identifier there are some rules of it we need to take care of that while defining Identifiers....

14. Java Inheritance

1. If, else-if, else...

15. Java Maths Class

...

16. Typecasting In Java

...

17. Arrays in Java

...

18. Strings in Java

...

19. Java Regex

...

20. Java Exception Handling

...

21. Java Commands

Java Methods are collections of statements that perform some specific task and return the result....

22. Java Generics

...

23. Java Multithreading

We can only print using System.out but can use different print varieties in it:...

24. Java Collections

...

Why Use Java?

...

Why is Java so Popular?

...

Features of Java

Polymorphism: It is the ability to differentiate between entities with the same name efficiently....

Applications of Java Programming language

...

Java Cheat Sheet – FAQs

...

Contact Us