35063-vm/vendor/stripe/stripe-php/lib/Stripe/RateLimitError.php
Flatlogic Bot f03532c201 12
2025-10-19 20:05:43 +00:00

12 lines
259 B
PHP

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