for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yabacon\Paystack\Exception;
class ApiException extends PaystackException
{
private $_responseObject;
public function __construct($message, $object)
parent::__construct($message);
$this->_responseObject = $object;
}
public function getResponseObject()
return $this->_responseObject;