Throw an Exception – Java Exception Program Implementation

Write a JAVA program to accept a number from the user and throw an exception (java exception)  if the number is not an even number.

Example of Throw an Exception Program Implementation.

 

import java.lang.*;
import java.io.*;
class myException extends Exception
{
	myException(String msg)
	{
		super(msg);
	}
}
class q12Exception
{
	public static void main(String args[])
	{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n;
		try
		{
			System.out.println ("Enter a no.");
			n=Integer.parseInt(br.readLine());
			if(n%2==0)
			{
				System.out.println ("No. is even");
			}
			else
			{
				throw new myException("No. is not even");
			}
		}
		catch(myException me)
		{
			System.out.println (me);
		}
		catch(IOException ie)
		{
			System.out.println (ie);
		}
		
	}
}

Rabins Sharma Lamichhane

Rabins Sharma Lamichhane is senior ICT professional who talks about #it, #cloud, #servers, #software, and #innovation. Rabins is also the first initiator of Digital Nepal. Facebook: rabinsxp Instagram: rabinsxp

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *