/**
  * Sends the exception data to the logger class.
  *
  * @param object $oExcept \Exception object.
  * @return void
  */
 public static function launch(\Exception $oExcept)
 {
     if (Debug::is()) {
         Page::exception($oExcept);
     } else {
         (new LoggerExcept())->except($oExcept);
         // Set Exception in Error Log
         Page::error500();
     }
 }