- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
class ChargifyNotFoundException extends ChargifyException {
var $errors;
var $http_code;
public function ChargifyNotFoundException($http_code, $error) {
$this->http_code = $http_code;
$message = '';
$this->errors = array();
foreach ($error as $key=>$value) {
if ($key == 'error') {
$this->errors[] = $value;
$message .= $value . ' ';
}
}
parent::__construct($message, intval($http_code));
}
}
1024-- 14.10.2014 20:06 # +2
guest 14.10.2014 22:26 # +2
istem 14.10.2014 23:33 # 0