Java throw exception


Java throw keyword

The Java throw keyword is used to explicitly throw an exception.

We can throw either checked or uncheked exception in java by throw keyword. The throw keyword is mainly used to throw custom exception. We will see custom exceptions later.

The syntax of java throw keyword is given below.

Let's see the example of throw IOException.

java throw keyword example

In this example, we have created the validate method that takes integer value as a parameter. If the age is less than 18, we are throwing the ArithmeticException otherwise print a message welcome to vote.

Test it Now

Output:

Exception in thread main java.lang.ArithmeticException:not valid




Contact US

Email:[email protected]

Java Throw Keyword
10/30