nur-sery/nur_src/m/base/QueryException.php

14 lines
278 B
PHP
Raw Normal View History

2023-12-03 22:10:18 +04:00
<?php
namespace nur\m\base;
use nur\b\UserException;
use Throwable;
class QueryException extends UserException {
const USER_MESSAGE = "unknown error";
function __construct($message=null, ?Throwable $previous=null) {
parent::__construct($message, 0, $previous);
}
}