Contact: aviboots(AT)netvision.net.il
40,760 questions
53,134 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 */