Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/externals/stripe-php/lib/Stripe/RateLimitError.php
12256 views
1
<?php
2
3
class Stripe_RateLimitError extends Stripe_InvalidRequestError
4
{
5
public function __construct($message, $param, $httpStatus=null,
6
$httpBody=null, $jsonBody=null
7
)
8
{
9
parent::__construct($message, $httpStatus, $httpBody, $jsonBody);
10
}
11
}
12
13