for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ==================================
* Responsible PHP API
*
* @link Git https://github.com/vince-scarpa/responsibleAPI.git
* @api Responible API
* @package responsible\core\exception
* @author Vince scarpa <[email protected]>
*/
namespace responsible\core\exception;
class responsibleException extends \Exception
{
* [__construct Use parent constructor]
public function __construct($eMessage, $code)
parent::__construct($eMessage, $code);
}