code_location = $code_location; $this->message = $message; } /** * @return CodeLocation */ public function getLocation() { return $this->code_location; } /** * @return string */ public function getShortLocation() { return $this->code_location->file_name . ':' . $this->code_location->getLineNumber(); } /** * @return string */ public function getFilePath() { return $this->code_location->file_path; } /** * @return string */ public function getFileName() { return $this->code_location->file_name; } /** * @return string */ public function getMessage() { return $this->message; } }