I have two classes inheriting from java.lang.Exception
. They both have a method with the same signature void a(){...}
. They both can be thrown in a code block. If I do:
catch (SubException1 | SubException2 e)
{
e.a();
}
Then it won't compile because method a()
does not belong to Exception. Is it a Java language flaw? How should I design my code properly to prevent code redundancy?