errorData = $errorData + array('error_code' => $error_code); } // custom string representation of object public function __toString() { return __CLASS__ . ": [{$this->errorData['error_code']}: {$this->message}\n"; } public function getErrorCode() { return $this->errorData['error_code']; } public function getErrorData() { return $this->errorData; } }