DataWizard/Application/Model/Exceptions/NoSuitableRendererException...

33 lines
866 B
PHP
Raw Normal View History

<?php
/**
2021-04-20 11:20:34 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2022-01-17 10:59:18 +01:00
*
2021-04-20 11:20:34 +02:00
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2021-04-20 11:20:34 +02:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
2021-04-20 09:57:44 +02:00
declare(strict_types=1);
namespace D3\DataWizard\Application\Model\Exceptions;
use Exception;
use OxidEsales\Eshop\Core\Registry;
class NoSuitableRendererException extends DataWizardException
{
2022-01-17 10:59:18 +01:00
public function __construct($sMessage = "not set", $iCode = 0, Exception $previous = null)
{
$sMessage = sprintf(
Registry::getLang()->translateString('D3_DATAWIZARD_ERR_NOSUITABLERENDERER'),
$sMessage
);
2022-01-17 10:59:18 +01:00
parent::__construct($sMessage, $iCode, $previous);
}
2022-01-17 10:59:18 +01:00
}