/**
  * Calls the init functions for all the error modules
  */
 function __construct()
 {
     //Itterate all error trackers
     foreach (\Radical\Core\Libraries::get(self::ERRORS_EXPR) as $class) {
         $class::Init();
     }
     parent::__construct();
 }