1<?php 2 3class 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