<?php // mainfunction a(){ b(); echo 'this is never echoed';}function b(){ c(); echo 'this is never echoed';}function c(){ throw new \Exception("argh"); echo 'this is never echoed';}a();