1 system.module system_404()

Menu callback; Returns the standard "Page not found" error page.

File

core/modules/system/system.module, line 4181
Configuration system that lets administrators modify the workings of the site.

Code

function system_404() {
  return t('The requested page "@path" could not be found.', array('@path' => request_uri()));
}