| Current Path : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Exception/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Exception/LocalizedException.php |
<?php
namespace StripeIntegration\Payments\Exception;
class LocalizedException extends \Magento\Framework\Exception\LocalizedException
{
public $statusCode;
public function __construct($msg, $statusCode = 400)
{
$this->statusCode = $statusCode;
if (is_string($msg))
parent::__construct(__($msg));
else
parent::__construct($msg);
}
}