error handling java code example

Example 1: how do you handle exceptions in java

I use try & catch blocks to handle any exceptions in my code. 
  I am familiar with major checked and unchecked exceptions and 
  handle it accordingly to make my code execution smooth

Example 2: exception handling in java example

public class Exception8 {
public static void main(String[]args)
{
   fun1();
   fun2();
}
static void fun1()
{
   	fun3();
}
static void fun2()
{
     	fun3();
}
static void fun3()
{
	try {
	System.out.println(20/0);
	}
	catch(ArithmeticException e)
	{
		System.out.println("Zero divison ");
	}
}
}

Example 3: what is exception in java

An exception is an event, which occurs during the execution of a 
program, that disrupts the normal flow of the program's instructions.

Example 4: how many ways we can do exception handling in java

We can handle exceptions in either of the two ways :
1) By specifying try catch block where we can catch the exception.
2) Declaring a method with throws clause

Tags:

Java Example