- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name - improved database connection handling (fixed persistent DB connections)
20 lines
325 B
PHP
20 lines
325 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus 4D
|
|
* 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);
|
|
}
|
|
} |