removed all files that are in the .gitignore

This commit is contained in:
Exodus4D
2015-08-25 23:20:43 +02:00
parent 39d0d19108
commit 64c71b6d42
105 changed files with 1674 additions and 4327 deletions

View File

@@ -0,0 +1,37 @@
<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 21.02.15
* Time: 00:12
*/
namespace Exception;
class ValidationException extends BaseException {
private $field;
/**
* @return mixed
*/
public function getField(){
return $this->field;
}
/**
* @param mixed $field
*/
public function setField($field){
$this->field = $field;
}
public function __construct($message, $field = 0){
parent::__construct($message, self::VALIDATION_FAILED);
$this->setField($field);
}
}