Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/stripe/module-payments/Exception/
Upload File :
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);
    }

}