For a project I've been working on, we have some blocks that look like this:
Class A:
try {
callSomeMethod();
}
catch (Exception e) {
throw new SomeCustomExceptionTypeForMetrics("");
}
However, I was tasked with replacing all instances where we catch generic exceptions with only specific "expected" types of exceptions.
The problem is callSomeMethod() has something like this
Class B:
try {
if (someCondition...) {
}
else {
//failed
throw new RuntimeException("Timeout while waiting for results")
}
}
catch(InterruptedException e) {
// do some failure stuff here
throw new RuntimeException("Something here");
}
Ideally, my group has asked me to change as little as possible, and I can't change the signature for callSomeMethod(), but they also don't want to just catch any RuntimeException in Class A since they don't want to catch just any type of RuntimeException - only the ones we're excepting from Class B.
What is the best way to handle this?
Supposing that your
callSomeMethod
's signature containsthrows Exception
, and you can't change it: Change theRuntimeException
s in the method to a customException
class, and then in Class A:This is kind of silly, but might be necessary if you can't change the method signature. (If you can change it, you could catch the
CustomException
directly.) You could even make a method in your logger that takes anException
, checks what type it is, and acts accordingly. Then just use this method in every catch statement that you need to edit.While designing this solution, keep in mind that
RuntimeException
s don't need to be caught. It could save you some trouble.