11 lines
202 B
PHP
11 lines
202 B
PHP
<?php
|
|
|
|
namespace itguild\forms\form\exceptions;
|
|
|
|
class CreateFormException extends \Exception
|
|
{
|
|
function __construct(string $msg)
|
|
{
|
|
$this->message = "Create form error: " . $msg;
|
|
}
|
|
} |