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