What does this F# code look like in Erlang – Part 3 of N

Presently sponsored by Serverless Guru: Your guide to cloud excellence, helping you every step of your serverless journey, including team training, pattern development, mass service migrations, architecting, and developing new solutions. Speak to a Guru today.

Related Posts

 

Throwing Exceptions

In F#, you can define a custom exception type by creating a type that inherit from System.Exception or using the lightweight exception syntax to define them with the same syntax as discriminated unions.

You can throw exceptions in F# using the raise keyword or using failwith or failwithf:

exception MyExceptionA

exception MyExceptionB of string

let exThrower (isA : bool option) =

    match isA with

    | Some(true) -> raise MyExceptionA

    | Some(false) -> raise <| MyExceptionB("Blah Blah")

    | _ -> raise <| new System.Exception()

    | _ -> failwith "Not a valid input"

Erlang also has a number of different exception types, the most common ways to raise an exception in Erlang is via:

  • error(Reason) – terminates the current process and includes a stack trace.
  • exit(Reason) – similar to errors, but does not return the stack trace.
  • throw(Reason) – throws exceptions that the caller can be expected to handle, also used as a way to return from deep recursion.

1> throw("Blah Blah").

** exception throw: "Blah Blah"

2> error(boo).

** exception error: boo

3> exit(foo).

** exception exit: foo

 

Catching Exceptions

In F#, you can implement a try-catch block using the try-with keywords, and it’s really easy to use pattern matching to make handling multiple types of exceptions really easy.

Borrowing from the wonderfully humorous example from Learn you some Erlang for great good! here’s how it’ll look in F#:

 

In Erlang, the syntax is surprisingly similar:

 

Another thing to keep in mind is that whilst F# has try-with and try-finally blocks there is no equivalent of C#’s try-catch-finally block. In Erlang the try-catch-finally block looks like this:

black_knight(Attack) when is_function(Attack, 0) –>

    try Attack() of

        _ -> "None shall pass."

    catch

        throw:slice   -> "It is but a scratch.";

        error:cut_arm -> "I’ve had worse.";

        exit: cut_leg -> "Come on you pansy!";

        _:_             -> "Just a flesh wound."

    after

        io:format("Attack finished…~n", [])

    end.

2 thoughts on “What does this F# code look like in Erlang – Part 3 of N”

  1. Pingback: What does this F# code look like in Erlang – Part 2 of N | theburningmonk.com

  2. Pingback: What does this F# code look like in Erlang – Part 1 of N | theburningmonk.com

Leave a Comment

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