pdfdokumente/Application/Model/Exceptions/noBaseObjectSetException.php

21 lines
602 B
PHP
Raw Normal View History

2020-05-30 00:46:30 +02:00
<?php
/**
2020-07-04 23:25:24 +02:00
* See LICENSE file for license details.
*
2020-05-30 00:46:30 +02:00
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
namespace D3\PdfDocuments\Application\Model\Exceptions;
2020-06-02 10:12:35 +02:00
use Exception;
2020-05-30 00:46:30 +02:00
class noBaseObjectSetException extends pdfGeneratorExceptionAbstract
{
2020-06-02 10:12:35 +02:00
public function __construct( $sMessage = "no base object (e.g. order) for pdf generator set", $iCode = 0, Exception $previous = null )
2020-05-30 00:46:30 +02:00
{
parent::__construct( $sMessage, $iCode, $previous );
}
}