Exception Handling
This refers to the method of catching and handling an exception object (Exception) that has been thrown.
1. When the program must proceed regardless of the processing result of a certain business logic
try {
...
} catch (DefaultApplicationException e) {
// Handle
}