Updated PhpDoc
This commit is contained in:
parent
e2b5bfab32
commit
1f5a04d04e
1 changed files with 6 additions and 0 deletions
|
@ -7,6 +7,12 @@
|
||||||
|
|
||||||
class DatabaseOperationException extends Exception
|
class DatabaseOperationException extends Exception
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* DatabaseOperationException constructor.
|
||||||
|
*
|
||||||
|
* @param string $message
|
||||||
|
* @param Throwable|null $throwable
|
||||||
|
*/
|
||||||
public function __construct(string $message, ?Throwable $throwable=null)
|
public function __construct(string $message, ?Throwable $throwable=null)
|
||||||
{
|
{
|
||||||
parent::__construct($message, 500, $throwable);
|
parent::__construct($message, 500, $throwable);
|
||||||
|
|
Loading…
Add table
Reference in a new issue