<%doc>
Default Handler for nonexistent pages

</%doc>
<%init>
# Otherwise apache (by extension probably) determines the content type
# which botches the error message if not html.
$r->content_type(q{text/html; charset=utf-8});
my $arg = $m->dhandler_arg();
</%init>

<%perl>

$m->comp('/generic/error.mhtml', error => "The requested page: \"$arg\" does not exist");

</%perl>
