forms_bundle/src/exceptions/FormResultNotFoundException.php
2024-07-25 12:33:47 +03:00

11 lines
219 B
PHP

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