Files
pathfinder/app/main/exception/registrationexception.php
2015-08-25 23:04:47 +02:00

18 lines
282 B
PHP

<?php
/**
* Created by PhpStorm.
* User: Exodus
* Date: 15.08.2015
* Time: 21:21
*/
namespace Exception;
class RegistrationException extends BaseException{
public function __construct($message){
parent::__construct($message, self::REGISTRATION_FAILED);
}
}