- var_dump: documentation ( source)
<?php
class ExceptionThatExists extends Exception
{
//
}
try {
throw new ExceptionThatExists();
} catch (NonExistentException $exception) {
var_dump('Caught NonExistentException');
} catch (ExceptionThatExists $exception) {
var_dump('Caught ExceptionThatExists');
}