/**
  * @param integer $bit the value to bitwise or with
  * @param string $errorMessage The error message display in the form.
  */
 public function __construct($bit, $errorMessage = 'invalid input')
 {
     parent::__construct($errorMessage);
     $this->_bit = $bit;
 }