for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* PayPal Donation extension for the phpBB Forum Software package.
* @copyright (c) 2015 Skouat
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace skouat\ppde\exception;
class transaction_exception extends \Exception
{
* @var array
private $errors = [];
* @return array
public function get_errors()
return $this->errors;
}
* @param array $errors
* @return transaction_exception
public function set_errors($errors)
$this->errors = $errors;
return $this;