mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
12 lines
296 B
PHP
12 lines
296 B
PHP
|
<?php
|
||
|
|
||
|
class Stripe_CardError extends Stripe_Error
|
||
|
{
|
||
|
public function __construct($message, $param, $code, $http_status=null, $http_body=null, $json_body=null)
|
||
|
{
|
||
|
parent::__construct($message, $http_status, $http_body, $json_body);
|
||
|
$this->param = $param;
|
||
|
$this->code = $code;
|
||
|
}
|
||
|
}
|