<?php set_exception_handler(function($e) { echo "Error encountered: {$e->getMessage()}"; }); class ErrorMessageTest { public function isOk() { echo "This works okay. "; } public function isNotOkay() { echo "This will not work. "; throw new RuntimeException("Violets are red, roses are blue!! Wha!?!?"); } } $test = new ErrorMessageTest(); $test->isOk(); $test->isNotOkay();
You have javascript disabled. You will not be able to edit any code.