portal.mkgtu.ru/common/components/CodeSettingsManager/exceptions/CodeNotFoundInConnectionArr...

29 lines
422 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
namespace common\components\CodeSettingsManager\exceptions;
use Throwable;
class CodeNotFoundInConnectionArrayException extends \Exception
{
public function __construct($defaultCode, $arrName, $code = 0, Throwable $previous = null)
{
parent::__construct("Не удалось найти элемент ' '{$defaultCode}' в массиве {$arrName}", $code, $previous);
}
}