- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name - improved database connection handling (fixed persistent DB connections)
18 lines
223 B
PHP
18 lines
223 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus 4D
|
|
* Date: 20.10.2018
|
|
* Time: 18:53
|
|
*/
|
|
|
|
namespace Exception;
|
|
|
|
|
|
class ConfigException extends PathfinderException {
|
|
|
|
protected $codes = [
|
|
1000 => 500
|
|
];
|
|
|
|
} |