first commit
This commit is contained in:
13
exceptions/FieldTypeNotFound.php
Normal file
13
exceptions/FieldTypeNotFound.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace itguild\forms\form\exceptions;
|
||||
|
||||
class FieldTypeNotFound extends \Exception
|
||||
{
|
||||
|
||||
function __construct(string $type)
|
||||
{
|
||||
$this->message = "Тип поля $type не найден";
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user