parameters = $parameters; } /** * Output the error as a string * * @return string */ public function __toString() { return $this->message . ': ' . var_export($this->parameters, true); } /** * Get the parameters * * @return array */ public function getParameters() { return $this->parameters; } }