Skip to content

Instantly share code, notes, and snippets.

@MarioBlazek
Created April 29, 2019 10:29
Show Gist options
  • Save MarioBlazek/02c857578ede6d13139f60de22002ae4 to your computer and use it in GitHub Desktop.
Save MarioBlazek/02c857578ede6d13139f60de22002ae4 to your computer and use it in GitHub Desktop.
<?php
class MyCustomException extends Exception { }
class MyAnotherCustomException extends Exception { }
try {
throw new MyAnotherCustomException;
} catch (MyCustomException | MyAnotherCustomException $e) {
echo "Caught : " . get_class($e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment