F# – Exception handling the pattern matching way!

Yan Cui

I help clients go faster for less using serverless technologies.

Pattern matching is everywhere in F#, you can use it in let bindings, in function parameters, in for loops, everywhere, and it is totally amazing. It is in my opinion one of the best features of F#, and in functional languages in general, heck, Erlang goes as far as not having an assignment operator and everything is pattern matched instead (yup, that’s right, ‘=’ is the pattern match operator in Erlang, not assignment!). Once you’ve had a chance to work with it you’ll understand why those functional folks love it so much!

In terms of exception handling, consider this piece of code in C#:

Notice that the switch statement allows you to apply the same handler to multiple cases but not the catch statements, which leads to duplicated exception handling code. Wouldn’t it be nice if you don’t have to keep repeating yourself?

Now, let’s see how pattern matching in F# lets us do just that:

Pretty neat, right? Not only are you able to group handling code for different exceptions, you can also use wild card ( _ ) and when guards (e.g. | _ as ex when ex.Message.Contains(“Oops”) to match any exception whose message contains the term ‘Oops’) too, which give you a very fine control over which handler is used for what exceptions.

As the patterns are matched from top to bottom, if you move the wildcard pattern to the top you’ll receive a set of gentle warnings from the compiler letting you know that doing so will mean that each of the subsequent patterns will never be matched.

It’s also worth noting that whilst F# has try-catch and try-finally expressions, there is no try-catch-finally expression.


 

Whenever you’re ready, here are 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


2 thoughts on “F# – Exception handling the pattern matching way!”

  1. Pingback: F# – Extending Discriminated Unions using marker interfaces | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *