mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 13:44:36 +03:00
35 lines
753 B
PHP
35 lines
753 B
PHP
<?php
|
|
|
|
namespace Nominatim;
|
|
|
|
class DatabaseError extends \Exception
|
|
{
|
|
|
|
public function __construct($message, $code, $previous, $oPDOErr, $sSql = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
// https://secure.php.net/manual/en/class.pdoexception.php
|
|
$this->oPDOErr = $oPDOErr;
|
|
$this->sSql = $sSql;
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
|
|
}
|
|
|
|
public function getSqlError()
|
|
{
|
|
return $this->oPDOErr->getMessage();
|
|
}
|
|
|
|
public function getSqlDebugDump()
|
|
{
|
|
if (CONST_Debug) {
|
|
return var_export($this->oPDOErr, true);
|
|
} else {
|
|
return $this->sSql;
|
|
}
|
|
}
|
|
}
|