I dont want to catch some exception. Can I do it somehow?
Can I say something like this:
catch (Exception e BUT not CustomExceptionA) { }
try { // Explosive code } catch (CustomExceptionA){ throw; } catch (Exception ex) { //classic error handling }