error; } /** * @param string $error * @return ResultError */ public function setError($error) { $this->error = $error; return $this; } /** * @return string */ public function getErrorDescription() { return $this->errorDescription; } /** * @param string $errorDescription * @return ResultError */ public function setErrorDescription($errorDescription) { $this->errorDescription = $errorDescription; return $this; } }