예제 #1
0
 public function __construct($errorMsg, $compareWith)
 {
     parent::__construct($errorMsg);
     $this->_compareWith = $compareWith;
 }
예제 #2
0
 public function __construct($errorMsg, $format)
 {
     parent::__construct($errorMsg);
     $this->_format = $format;
 }
예제 #3
0
 public function __construct($errorMsg, $length)
 {
     parent::__construct($errorMsg);
     $this->_length = $length;
 }
예제 #4
0
 public function __construct($errorMsg, $field, $condition)
 {
     parent::__construct($errorMsg);
     $this->_field = $field;
     $this->_condition = $condition;
 }
예제 #5
0
 public function __construct($errorMsg, $checkFunctionCallback, $params = array())
 {
     parent::__construct($errorMsg);
     $this->_checkFunction = $checkFunctionCallback;
     $this->_params = $params;
 }