forms/exceptions/FormResultNotFoundException.php
2024-05-28 17:10:06 +03:00

11 lines
224 B
PHP

<?php
namespace itguild\forms\form\exceptions;
class FormResultNotFoundException extends \Exception
{
function __construct($id)
{
$this -> message = "Ответ формы $id не найдена";
}
}