+ 12
Exceptions
Are specific exceptions called before general exceptions in Python and C# ?
3 Réponses
+ 5
Yes That is true.
The most general exception is Exception.
But if a more specific exception applies, then this block will handle the exception.
Only one catch block handles the exception
https://www.tutorialsteacher.com/csharp/csharp-exception-handling
+ 3
in C# General exception not called ,if in code use specific exception. After specific exception will call 'finally' part , if it exist.
+ 3
Hi all!)