java_exception_handling_solutions
java_exception_handling_solutions
Problem Statement:
Write a Java program that takes two integers as input and performs division. Use exception handling to ma
Solution:
```java
import java.util.Scanner;
Problem Statement:
Create a custom exception class `AgeOutOfRangeException`. Throw this exception if the age is less than 0
Solution:
```java
import java.util.Scanner;