コード例 #1
0
ファイル: RegEx.php プロジェクト: ehamrin/Repository
 public function __construct($regex, $message)
 {
     parent::__construct($message);
     $this->regex = $regex;
 }
コード例 #2
0
ファイル: LessThan.php プロジェクト: ehamrin/Repository
 public function __construct($min, $message)
 {
     parent::__construct($message);
     $this->min = $min;
 }
コード例 #3
0
ファイル: LargerThan.php プロジェクト: ehamrin/Repository
 public function __construct($max, $message)
 {
     parent::__construct($message);
     $this->max = $max;
 }