Is it possible to have a module level error handler rather than procedure level?
Asked
Active
Viewed 495 times
3
-
1Not directly. You'll need a procedure level stub that calls a module level handler which can forward to a global (project-wide) error handler. – wqw May 07 '11 at 08:58
-
1Hmm, no. Modules do not retain state. There's no way for a module to know that it's supposed to handle errors. Can you give more information about the specific problem you're trying to solve? – Cody Gray - on strike May 07 '11 at 09:06