In this article we will learn how to create user defined exceptions (checked and unchecked), and why and when to use it.
Custom exceptions are useful:
– To transform an exception and give the user a proper user readable error.
– To group similar exceptions. Say you can group business errors into BUS_ERR_XX error code, database errors into DB_ERR_XX error code.
Steps:
– Create a class which extends Exception (for checked exceptions) or RuntimeException (for unchecked exceptions).
– Call super method from the new class’s constructor, and pass the error code or error message.
In the case of unchecked exceptions, throwable is optional but it can be passed to super if you want to get the original exception in the chain of exceptions. (Refer example below for more information)
– Throw the custom exception.