Module sitemap.xml not found.
in library/class.module.php on line 352
library/class.module.php
347                     // Für Catchall-Modul Pfad nicht weiter berücksichtigen
348                     // TODO : weitere Pfadkomponenten sollten trotzdem als
349                     // Action/Subaction etc zur Verfügung stehen
350                     //if(self::$_current->catch_all) $p = null;
351                 }
352                 else throw new Exception("Module {$m} not found.");
353             }
354             // Submodul?
355             else {
356                 $sub = self::$_current->getSubmodule($m);
357 
library/class.app.php function: getRequestedModule('/sitemap.xml')
373     public function execRequest() {
374         // Module laden
375         Module::load();
376 
377         // Modul für angeforderte URL suchen
378         $module = Module::getRequestedModule($this->relativeUrl);
379         // Angeforderte Pfad-Segmente in Request übertragen
380         $module->toRequest($this->request);
381         
382         // Standard-Headline setzen
383         $this->page->title = $module->headline;
loader.php function: execRequest()
33 
34 // Installation
35 if(app()->request->has('install') && file_exists(app()->appRoot('_required'))) Module::install();
36 
37 // Ausführen
38 app()->execRequest();