Java Custom exception

Custom exception:   You can define your own exception also. These exceptions are known as custom exceptions. Note: 1. For writing custom-checked exceptions, extend the Exception class. 2. For writing custom unchecked exceptions, extend the RuntimeException class. Java Custom Exception Example   class MyException extends Exception { public MyException(String message) { super(message); } } class … Read more