exception-throw

Exception throws: encapsulate them or not?

Hi there. Once I read an MSDN article that encouraged the following programming paradigm (its not 100% true... see edit): public class MyClass { public void Method1() { NewCustomException(); } public void Method2() { NewCustomException(); } void NewCustomException() { throw ne...