removed all files that are in the .gitignore
This commit is contained in:
21
app/main/exception/baseexception.php
Normal file
21
app/main/exception/baseexception.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: exodus4d
|
||||
* Date: 21.02.15
|
||||
* Time: 00:41
|
||||
*/
|
||||
|
||||
namespace Exception;
|
||||
|
||||
|
||||
class BaseException extends \Exception {
|
||||
|
||||
const VALIDATION_FAILED = 403;
|
||||
const REGISTRATION_FAILED = 403;
|
||||
|
||||
public function __construct($message, $code = 0){
|
||||
parent::__construct($message, $code);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user