nur-sery/src/schema/SchemaException.php

11 lines
188 B
PHP
Raw Normal View History

2023-11-09 10:03:35 +04:00
<?php
namespace nur\sery\schema;
use Exception;
class SchemaException extends Exception {
2023-11-24 16:50:05 +04:00
static final function invalid_schema(): self {
return new static("invalid schema");
}
2023-11-09 10:03:35 +04:00
}