Remove exception_wrapper::throwException
[folly.git] / folly / ExceptionWrapper.h
index 6e11dd3c20ee7675b68b85a2a13245bbca4188f9..b00dc77d213a8e6e5efcf5d0187a4ccd3ca199a6 100644 (file)
@@ -513,11 +513,6 @@ class exception_wrapper final {
   //! Throws the wrapped expression.
   [[noreturn]] void throw_exception() const;
 
-  [[noreturn]] FOLLY_DEPRECATED(
-      "use throw_exception") void throwException() const {
-    throw_exception();
-  }
-
   //! Call `fn` with the wrapped exception (if any), if `fn` can accept it.
   //! \par Example
   //! \code