mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 13:02:50 +00:00
24 lines
481 B
PHP
24 lines
481 B
PHP
<?php
|
|
|
|
namespace Stripe\Error;
|
|
|
|
class InvalidRequest extends Base
|
|
{
|
|
public function __construct(
|
|
$message,
|
|
$stripeParam,
|
|
$httpStatus = null,
|
|
$httpBody = null,
|
|
$jsonBody = null,
|
|
$httpHeaders = null
|
|
) {
|
|
parent::__construct($message, $httpStatus, $httpBody, $jsonBody, $httpHeaders);
|
|
$this->stripeParam = $stripeParam;
|
|
}
|
|
|
|
public function getStripeParam()
|
|
{
|
|
return $this->stripeParam;
|
|
}
|
|
}
|