Contact: aviboots(AT)netvision.net.il
39,987 questions
51,931 answers
573 users
/* throw new Exception($error_message); */ function exceptionFunction($exception) { echo "Exception: " . $exception->getMessage(); } set_exception_handler('exceptionFunction'); throw new Exception('message'); /* run: Exception: message */