We will discuss in this tutorial about The catch keyword in Java programming language
The catch is a keyword of Java, it is a part of a try block using exception handling in Java. When an exception is thrown inside a try block, the exception will be compared to any of the catch parts of the inside in try block. When the exception match with one of the exceptions in any one catch part, the exception will be handled there.
The syntax of catch block (inside of try) in java
try { //statements which may throw exception } catch (ApplicationException e) { //when try block throws exception //catch block will be executed }
Java allowed multiple catch block inside the try block
We can write multiple catch block in the single try block. When the exception match with one of the exceptions in any one catch part. The exception will be handled there
The syntax of multiple catches (inside of try block) in java
try { statement_A; statement_B; ................ } catch(Exception Type1) { //handle the exception_Type_1 here statements.. } catch(Exception Type2) {//handle the exception_Type_2 here statements.. }
if the try block throws Exception_Type_1 then it will be handled in its catch block(first catch block). Similarly, wen the try block throws Exception_Type_2 then it will be handled in the second catch block.
You can handle multiple types of exceptions in a single catch block. this is known as multi-catch block multi-catch is introduced from Java 7 version
try{ //Code that may throw an exception } catch(IO Exception | IndexOutOfBoundException e){ //handled both exceptions here(multiple exceptions) } catch(Exception e){ //handled other exceptions here }
There are other Java language keywords that are similar to this keyword
static keyword in Java language
extends keyword in Java language
Suggested for you
Usage of final keyword in Java
Finally keyword in Java language
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…
Python: Average of Odd & Even Numbers from User Input In this post, we will…
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…