PaymentError.php 288 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php class Divido_PaymentError extends Divido_Error { public function __construct($message, $param, $code, $httpStatus, $httpBody, $jsonBody ) { parent::__construct($message, $httpStatus, $httpBody, $jsonBody); $this->param = $param; $this->code = $code; } }