if (log.isErrorEnabled())
{
log.error("user is trying to access class: " + pageParam +
" which is not in the scope of org.apache.wicket.examples");
}
throw new UnauthorizedInstantiationException(getClass());
}
page = (Class<? extends Page>)Class.forName(getPageParam());
}
catch (ClassNotFoundException e)
{