I have a method which throws subclasses of Exception. If I am performing the same catch functionality for each sub-class of Exception that\'s causght is it bad practice to just
It is always suggested to catch possible exceptions (sub classes) than just catching all exceptions using all in one Exception catch block. Here is one reference.