Created
April 29, 2019 10:06
-
-
Save MarioBlazek/e672f29389c2239724f2371bfbdbca01 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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