| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-store/Model/StoreIsInactiveException.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Store\Model;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Phrase;
/**
* @api
* @since 100.0.2
*/
class StoreIsInactiveException extends LocalizedException
{
/**
* @param \Magento\Framework\Phrase $phrase
* @param \Exception $cause
* @param int $code
*/
public function __construct(Phrase $phrase = null, \Exception $cause = null, $code = 0)
{
if ($phrase === null) {
$phrase = new Phrase('Store is inactive');
}
parent::__construct($phrase, $cause, $code);
}
}