public function pageNotFound() {
//Log::writeLog("page not found",LOG_ERROR);
include_once(VIEWS_PATH."/errors/error.html");
exit();
}
public function pageForbidden() {
//Log::writeLog("page forbidden",LOG_ERROR);
include_once(VIEWS_PATH."/errors/error.html");
exit();
}
public function pageNotAccessed() {
//Log::writeLog("page not accessed ",LOG_ERROR);
include_once(VIEWS_PATH."/errors/error.html");
exit();
}