13 lines
216 B
PHP
13 lines
216 B
PHP
<?php
|
|
|
|
namespace itguild\forms\form\exceptions;
|
|
|
|
class FieldTypeNotFound extends \Exception
|
|
{
|
|
|
|
function __construct(string $type)
|
|
{
|
|
$this->message = "Тип поля $type не найден";
|
|
}
|
|
|
|
} |