Files
pathfinder/app/main/exception/pathfinderexception.php
2017-06-05 20:55:58 +02:00

17 lines
279 B
PHP

<?php
/**
* Created by PhpStorm.
* User: exodu
* Date: 05.06.2017
* Time: 19:19
*/
namespace Exception;
class PathfinderException extends BaseException{
public function __construct($message){
parent::__construct($message, self::CONFIGURATION_FAILED);
}
}