pdfdokumente/Application/Model/Exceptions/wrongPdfGeneratorInterface.php

23 lines
661 B
PHP
Raw Normal View History

2020-06-02 10:04:19 +02:00
<?php
/**
2020-07-04 23:25:24 +02:00
* See LICENSE file for license details.
*
2020-06-02 10:04:19 +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-06-02 10:04:19 +02:00
class wrongPdfGeneratorInterface extends pdfGeneratorExceptionAbstract
{
2020-06-02 10:12:35 +02:00
public function __construct( $requiredInterface, $sMessage = "generator class doesn't fulfilled the interface", $iCode = 0, Exception $previous = null ) {
2020-06-02 10:04:19 +02:00
$sMessage .= $requiredInterface;
parent::__construct( $sMessage, $iCode, $previous );
}
}