Flatlogic Bot 903cf599f0 rfresh1
2025-11-20 09:45:59 +00:00

12 lines
296 B
PHP

<?php
class Stripe_CardError extends Stripe_Error
{
public function __construct($message, $param, $code, $http_status=null, $http_body=null, $json_body=null)
{
parent::__construct($message, $http_status, $http_body, $json_body);
$this->param = $param;
$this->code = $code;
}
}