Methods for an Xdebug Exception class

php, xdebug

Solution

So after hacking at it, there's no method like Niels showed but there's a public property called $exception->xdebug_message that has the HTML formatted message. Don't forget to wrap it in a table tag if you are placing it in a HTML page.

echo '<table>';
echo $exception->xdebug_message;
echo '</table>';

Problem

Is it possible to see the methods of the extended Exception class Xdebug creates? I want to get at the HTML formatted stack trace.

Original source