2021-07-14 12:21:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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-07-14 12:21:12 +02:00
|
|
|
* https://www.d3data.de
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace D3\DataWizard\Application\Model\Exceptions;
|
|
|
|
|
2021-07-14 23:04:33 +02:00
|
|
|
use Exception;
|
2021-07-14 12:21:12 +02:00
|
|
|
use OxidEsales\Eshop\Core\Registry;
|
|
|
|
|
|
|
|
class ExportFileException extends DataWizardException
|
|
|
|
{
|
2022-01-17 10:59:18 +01:00
|
|
|
public function __construct($sMessage = "not set", $iCode = 0, Exception $previous = null)
|
2021-07-14 12:21:12 +02:00
|
|
|
{
|
|
|
|
$sMessage = sprintf(
|
|
|
|
Registry::getLang()->translateString('D3_DATAWIZARD_ERR_EXPORTFILEERROR'),
|
|
|
|
$sMessage
|
|
|
|
);
|
|
|
|
|
2022-01-17 10:59:18 +01:00
|
|
|
parent::__construct($sMessage, $iCode, $previous);
|
2021-07-14 12:21:12 +02:00
|
|
|
}
|
2022-01-17 10:59:18 +01:00
|
|
|
}
|