function setError($errorCode) {$this->errorcode = $errorCode;$this->error = $this->errors[$errorCode];}}function getError($errormessage = '') {$error = $this->errorcode.$this->errormessage;return $error;exit;}
/*** @ link Home* @ Mersadweb ..write a 404 page that actually makes sense.*/$err->setError(404);$err->getError("Page Not Found");