paramValue = $paramValue; } /** * Fetch the parameter value * @return string */ public function getParamValue() { return $this->paramValue; } /** * Fetch the message. * @return string */ public function fetchMessage() { if ( $this->message === null ) { $this->message = ";{$this->paramValue}:" . parent::fetchMessage(); } return $this->message; } }