1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 09:48:47 +02:00
phorge-phorge/externals/stripe-php/lib/Stripe/InvalidRequestError.php

13 lines
277 B
PHP
Raw Normal View History

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