Does the try-catch block continue execution after the catch? 1234567try { throw new Exception (1); } catch (Exception $exception) { echo "gotcha!"; } echo "what about me?"; The answer is Yes, it does.