message_long = $message_long; // make sure everything is assigned properly parent::__construct($message, $code); } /** * @return string */ public function getMessageLong() { return $this->message_long; } /** * custom string representation of object */ /*public function __toString() { $paypal = Module::getInstanceByName('paypal'); $error_msg = $this->code ? '['.$this->code.'] ' : ''; $error_msg .= $this->message ? $this->message : ''; $error_msg .= '
'; $error_msg .= $this->message_long ? $this->message_long : ''; return $error_msg."\n"; }*/ }