I have a class with number of methods and want to have one exception handler for them all.
There are so many of these methods and they have different parameters, that it would b
Exceptions are not really class related but method/callstack oriented. An object should, in general, not try to handle exceptions from it's own methods. It's up to the callers of those methods.