1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/externals/stripe-php/lib/Stripe/CardError.php

14 lines
285 B
PHP
Raw Normal View History

<?php
class Stripe_CardError extends Stripe_Error
{
public function __construct($message, $param, $code, $httpStatus,
$httpBody, $jsonBody
)
{
parent::__construct($message, $httpStatus, $httpBody, $jsonBody);
$this->param = $param;
$this->code = $code;
}
}