11 lines
215 B
PHP
11 lines
215 B
PHP
<?php
|
|
|
|
namespace itguild\forms\form\exceptions;
|
|
|
|
class FormNotFoundException extends \Exception
|
|
{
|
|
function __construct($formId)
|
|
{
|
|
$this -> message = "Форма $formId не найдена";
|
|
}
|
|
} |