- fixed DB setup error: "`system`.`description` can´t have a default value", closed #701 - upgraded "lazyload" js lib `v1.9.5` → `v1.9.7` - upgraded multiple 3rd party NPM dependencies for Gulp build
20 lines
321 B
PHP
20 lines
321 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: exodu
|
|
* Date: 25.08.2017
|
|
* Time: 20:31
|
|
*/
|
|
|
|
namespace Exception;
|
|
|
|
class DatabaseException extends PathfinderException {
|
|
|
|
protected $codes = [
|
|
1500 => 500
|
|
];
|
|
|
|
public function __construct(string $message){
|
|
parent::__construct($message, 1500);
|
|
}
|
|
} |