Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kaja47
Created February 15, 2015 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaja47/8951883af057590bc28b to your computer and use it in GitHub Desktop.
Save kaja47/8951883af057590bc28b to your computer and use it in GitHub Desktop.
try {
throw new Exception("E2")
} catch {
case ex: Exception if ex.getMessage == "E1" =>
println("caught E1")
case ex: Exception if ex.getMessage == "E2" =>
println("caught E2")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment