Updated PhpDoc

This commit is contained in:
netkas 2025-02-21 22:58:04 -05:00
parent e2b5bfab32
commit 1f5a04d04e

View file

@ -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);