You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
373 B
17 lines
373 B
<?php
|
|
|
|
namespace Darksparrow\AuxiliumSchemaBuilder\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class SchemaNameUnsetException extends Exception
|
|
{
|
|
public function __construct(
|
|
string $message = "The Name field is required.",
|
|
int $code = 422
|
|
) {
|
|
parent::__construct($message, $code);
|
|
$this->message = "$message";
|
|
$this->code = $code;
|
|
}
|
|
}
|
|
|