mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
- Form SDK implementation - Basic Forms - Dynamics Forms - Basic Blocks + Data Model Block - Form Compilation - Turbo integration
21 lines
514 B
PHP
21 lines
514 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Service\DependencyInjection;
|
|
|
|
use IssueLog;
|
|
use Throwable;
|
|
|
|
class DIException extends \Exception
|
|
{
|
|
public function __construct(string $sMessage = '', int $iCode = 0, ?Throwable $oPrevious = null, array $aContext = [])
|
|
{
|
|
parent::__construct($sMessage, $iCode, $oPrevious);
|
|
IssueLog::Exception(get_class($this).' occurs: '.$sMessage, $this, null, $aContext);
|
|
}
|
|
}
|