I dont want to catch some exception. Can I do it somehow?
Can I say something like this:
catch (Exception e BUT not CustomExceptionA) { }
You can filter it:
if (e is CustomExceptionA) throw;
And of course you can catch it and rethrow it:
try { } catch (CustomExceptionA) { throw; } catch (Exception ex) { ... }