forms/exceptions/CreateFormException.php
2024-05-28 17:10:06 +03:00

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;
}
}