name = $name; $this->description = $description; } public function __toString() { return $this->name; } public function getMessage() { if ($this->description) { return $this->description; } return $this->name; } }