/**
  * Tests WindActionException->__construct()
  */
 public function test__construct()
 {
     try {
         $this->errorMessage->sendError();
     } catch (WindActionException $e) {
         $this->assertEquals($e->getError(), $this->errorMessage);
         return;
     }
     try {
         throw new WindActionException("error!");
     } catch (Exception $e) {
         $this->assertEquals($e->getMessage(), "error!");
         return;
     }
     $this->fail("WindActionExceptionTest Error");
 }