Skip to content

Instantly share code, notes, and snippets.

@MarioBlazek
Created April 29, 2019 10:06
Show Gist options
  • Save MarioBlazek/e672f29389c2239724f2371bfbdbca01 to your computer and use it in GitHub Desktop.
Save MarioBlazek/e672f29389c2239724f2371bfbdbca01 to your computer and use it in GitHub Desktop.
try {
print "this is our try block n";
throw new Exception();
} catch (Exception $e) {
print "something went wrong, caught yah!";
} finally {
print "this part is always executed n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment