How to catch multiple exceptions at once in Scala? Is there a better way than in C#: Catch multiple Exceptions at once?
|
|
|
@didierd You can bind the whole pattern to a variable like this:
|
|||||||
|
|
As you have access to the full pattern matching capabilities of scala in the catch clause, you can do a lot :
Note that if you need to write the same handlers time and time again you can create your own control structure for that :
Some such methods are available in object scala.util.control.Exceptions. failing, failAsValue, handling may be just what you need Edit : Contrary to what is said below, alternative patterns can be bound, so the proposed solution is needlessly complex. See @agilesteel solution Unfortunately, with this solution, you have no access to the exception where you use the alternative patterns. To my knowledge, you cannot bind on an alternative pattern with case
|
|||||||||
|
|
You can also use
This specific example might not be the best example to illustrate how you can use it, but I find it pretty useful in many occasions. |
|||
|
|