I dont want to catch some exception. Can I do it somehow?
Can I say something like this:
catch (Exception e BUT not CustomExceptionA) { }
Starting with C# 6, you can use an exception filter:
try { // Do work } catch (Exception e) when (!(e is CustomExceptionA)) { // Catch anything but CustomExceptionA }