code; } private $shortMessage; public function getShortMessage() { return $this->shortMessage; } private $longMessage; public function getLongMessage() { return $this->longMessage; } private $severityCode; public function getSeverityCode() { return $this->severityCode; } public function __construct($code, $shortMessage, $longMessage, $severityCode) { $this->code = $code; $this->shortMessage = $shortMessage; $this->longMessage = $longMessage; $this->severityCode = $severityCode; } }