User Defined Exception in Java
What is User Defined Exception in Java?
User Defined Exception or custom exception is creating your own exception class and throws that exception using ‘throw’ keyword. This can be done by extending the class Exception.
There is no need to override any of the above methods available in the Exception class, in your derived class. But practically, you will require some amount of customizing as per your programming needs.
When to Use User-Defined Exceptions in Java?
User-defined exceptions in Java are custom exceptions created to handle specific error conditions in your application. They provide flexibility by allowing developers to define their error scenarios.
- Handle Specific Application Errors: If your application encounters a scenario that standard exceptions cannot cover, create a user-defined exception to address that situation.
- Enhance Readability and Debugging: User-defined exceptions offer more clarity by explicitly indicating the issue, making debugging easier.
- Ensure Clean Code Structure: These exceptions help maintain clean code, as they separate error-handling logic from the core functionality.
- Improve Code Maintenance: User-defined exceptions allow you to update error handling without modifying the entire code, making maintenance more efficient.
Example: To created a User-Defined Exception Class
Step 1) Copy the following code into the editor
class JavaException{ public static void main(String args[]){ try{ throw new MyException(2); // throw is used to create a new exception and throw it. } catch(MyException e){ System.out.println(e) ; } } } class MyException extends Exception{ int a; MyException(int b) { a=b; } public String toString(){ return ("Exception Number = "+a) ; } }
Step 2) Save , Compile & Run the code. Excepted output –
NOTE: The keyword “throw“ is used to create a new Exception and throw it to the catch block.