Don't re-throw exceptions from default FiberManager exception handler
[folly.git] / folly / experimental / fibers / FiberManager-inl.h
index 1e91a5a6b7dc5912aec630a4b811e26e3901c090..52c283f58ef303d166b768975444f0c082809af6 100644 (file)
@@ -527,11 +527,9 @@ FiberManager::FiberManager(
           LOG(DFATAL) << "Exception " << typeid(e).name() << " with message '"
                       << e.what() << "' was thrown in "
                       << "FiberManager with context '" << context << "'";
-          throw;
         } catch (...) {
           LOG(DFATAL) << "Unknown exception was thrown in FiberManager with "
                       << "context '" << context << "'";
-          throw;
         }
       }),
       timeoutManager_(std::make_shared<TimeoutController>(*loopController_)),