14 lines
278 B
PHP
14 lines
278 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|