Is possible to catch more then one exception in the same catch block?
try
{ }
catch(XamlException s | ArgumentException a)
{ }
|
Is possible to catch more then one exception in the same
|
||||
|
Yes. If you catch a superclass, it will also catch all subclasses too:
If this catches more than you wanted then you can rethrow the exceptions that you didn't intend to catch by testing their type. If you do this, be careful to use the But you can't catch two different types using the syntax you propose. |
|||||||||||
|
|
Not as succinctly as you are asking. One way would be to catch all exceptions and handle those two specially:
|
|||
|
|
|
Not being no C# guru however, this is standard in any oop language.
|
|||
|
|
|
In vb.net, it is possible to say
void HandleThisOrThatException(BaseTypeOfThisThatTheOtherException)
{ ... }
...
// Catch ThisException or ThatException, but not TheOtherException
catch (ThisException ex) {HandleThisOrThatException(ex);}
catch (ThatException ex) {HandleThisOrThatException(ex);}
|
|||
|
|
|
It's a bad example because any |
|||||
|
ArgumentExceptionderives fromSystemException, socatch (SystemException)is enough to ensnare both types. Of course you'd still need to cast if you wanted to inspect the argument that was incorrect, but if you need that much information, a separatecatchblock probably makes more sense anyway. Finally, you should really never be catchingArgumentExceptionanyway; it means you've done something wrong, so just fix the problem rather than ignoring it. – dlev Jun 26 '12 at 16:19