<?php function run() { try { throw Exception ('a'); } finally { throw Exception ('b'); } } try { run(); } Catch (Exception $e) { var_dump($e->getMessage(), $e->getPrevious()->getMessage()); }
You have javascript disabled. You will not be able to edit any code.