- added custom/editable ship jump logs, #709

- 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
This commit is contained in:
Mark Friedrich
2018-10-27 00:45:53 +02:00
parent 95222c309c
commit 07d5be71b2
95 changed files with 1766 additions and 560 deletions

View File

@@ -8,9 +8,13 @@
namespace Exception;
class DatabaseException extends BaseException {
class DatabaseException extends PathfinderException {
protected $codes = [
1500 => 500
];
public function __construct(string $message){
parent::__construct($message, self::DB_EXCEPTION);
parent::__construct($message, 1500);
}
}