How to go from one exception handler to another?

RinaS

New Member
The best way to explain my question is with the following pseudo-code:\[code\]try{ //Do work}catch (SqlException ex){ if (ex.Number == -2) { debugLogSQLTimeout(ex); } else { //How to go to 'Exception' handler? }}catch (Exception ex){ debugLogGeneralException(ex);}\[/code\]
 
Back
Top