jorge-matricali / jtrace
Prints PHP exceptions in a Java style
v1.0
2014-02-16 03:09 UTC
Requires
- php: >=5.3.3
Requires (Dev)
- phpunit/phpunit: ~4.0
- squizlabs/php_codesniffer: ~1.5
This package is auto-updated.
Last update: 2024-11-19 10:22:57 UTC
README
jTrace PHP
Prints PHP exceptions in a Java style :)
Installation
You can add this library as a dependency to your project using Composer:
composer require jorge-matricali/jtrace
If you only need this library during development, then you should install using:
composer require --dev jorge-matricali/jtrace
Usage
use JorgeMatricali\JTrace; try { // ... } catch (Exception $e) { echo JTrace::print($e); }
The code above yields the output below:
Phalcon\Mvc\Dispatcher\Exception: IndexController handler class cannot be loaded at Phalcon.Mvc.Dispatcher._throwDispatchException(index.php:93) at Phalcon.Dispatcher._dispatch(Unknown Source) at Phalcon.Dispatcher.dispatch(Unknown Source) at Phalcon.Mvc.Application.handle(Unknown Source) ... 1 more