This commit is contained in:
xiaomlove
2021-01-27 16:26:37 +08:00
parent dcdc0dd654
commit 8e792bafc7
11 changed files with 711 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Nexus\Database;
class DatabaseException extends \Exception
{
public function __construct($message, $query = '')
{
parent::__construct("$message [$query]");
}
}