<?php/* * * opcode number: 107 */try { $error = 'Always throw this error'; throw new Exception($error); // Code following an exception is not executed. echo 'Never executed';} catch (Exception $e) { echo 'Caught exception: ', $e->getMessage(), "\n";}// Continue executionecho 'Hello World';?>
Function name: (null)
Compiled variables: !0=$error, !1=$e