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