Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class.php:
  2.  
  3. class main {
  4. public function __call() {
  5. throw new Exception("Failed to call specified function");
  6. }
  7.  
  8. index.php:
  9.  
  10. include_once('class.php');
  11. $app = new main();
  12. try {
  13. $app->doesntexist();
  14. catch (Exception $e) {
  15. print $e->getMessage();
  16. }
  17.  
  18. Output:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement