public void mount( String path, Class<? extends Page> page ) throws PathAlreadyMounted
{
if ( pageMap.containsKey( path ) )
{
throw new PathAlreadyMounted( "Path has been already mounted with class: " + pageMap.get( path ) );
}
if ( pageMap.containsValue( page ) )
{
String p = getPathByPageClass( page );