Use simpler tags for ctor dispatch in exception_wrapper
[folly.git] / folly / ExceptionWrapper-inl.h
1 /*
2  * Copyright 2017-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 /*
17  *
18  * Author: Eric Niebler <eniebler@fb.com>
19  */
20
21 #include <folly/Portability.h>
22
23 namespace folly {
24
25 template <class Fn>
26 struct exception_wrapper::arg_type_
27     : public arg_type_<decltype(&Fn::operator())> {
28 };
29 template <class Ret, class Class, class Arg>
30 struct exception_wrapper::arg_type_<Ret (Class::*)(Arg)> {
31   using type = Arg;
32 };
33 template <class Ret, class Class, class Arg>
34 struct exception_wrapper::arg_type_<Ret (Class::*)(Arg) const> {
35   using type = Arg;
36 };
37 template <class Ret, class Arg>
38 struct exception_wrapper::arg_type_<Ret (Arg)> {
39   using type = Arg;
40 };
41 template <class Ret, class Arg>
42 struct exception_wrapper::arg_type_<Ret (*)(Arg)> {
43   using type = Arg;
44 };
45 template <class Ret, class Class>
46 struct exception_wrapper::arg_type_<Ret (Class::*)(...)> {
47   using type = AnyException;
48 };
49 template <class Ret, class Class>
50 struct exception_wrapper::arg_type_<Ret (Class::*)(...) const> {
51   using type = AnyException;
52 };
53 template <class Ret>
54 struct exception_wrapper::arg_type_<Ret (...)> {
55   using type = AnyException;
56 };
57 template <class Ret>
58 struct exception_wrapper::arg_type_<Ret (*)(...)> {
59   using type = AnyException;
60 };
61
62 template <class Ret, class... Args>
63 inline Ret exception_wrapper::noop_(Args...) {
64   return Ret();
65 }
66
67 inline std::type_info const* exception_wrapper::uninit_type_(
68     exception_wrapper const*) {
69   return &typeid(void);
70 }
71
72 template <class Ex, typename... As>
73 inline exception_wrapper::Buffer::Buffer(in_place_type_t<Ex>, As&&... as_) {
74   ::new (static_cast<void*>(&buff_)) Ex(std::forward<As>(as_)...);
75 }
76
77 template <class Ex>
78 inline Ex& exception_wrapper::Buffer::as() noexcept {
79   return *static_cast<Ex*>(static_cast<void*>(&buff_));
80 }
81 template <class Ex>
82 inline Ex const& exception_wrapper::Buffer::as() const noexcept {
83   return *static_cast<Ex const*>(static_cast<void const*>(&buff_));
84 }
85
86 inline std::exception const* exception_wrapper::as_exception_or_null_(
87     std::exception const& ex) {
88   return &ex;
89 }
90 inline std::exception const* exception_wrapper::as_exception_or_null_(
91     AnyException) {
92   return nullptr;
93 }
94
95 static_assert(
96     !kIsWindows || sizeof(void*) == 8,
97     "exception_wrapper is untested on 32 bit Windows.");
98 static_assert(
99     !kIsWindows || (kMscVer >= 1900 && kMscVer <= 2000),
100     "exception_wrapper is untested and possibly broken on your version of "
101     "MSVC");
102
103 inline std::uintptr_t exception_wrapper::ExceptionPtr::as_int_(
104     std::exception_ptr const& ptr,
105     std::exception const& e) {
106   if (!kIsWindows) {
107     return reinterpret_cast<std::uintptr_t>(&e);
108   } else {
109     // On Windows, as of MSVC2017, all thrown exceptions are copied to the stack
110     // first. Thus, we cannot depend on exception references associated with an
111     // exception_ptr to be live for the duration of the exception_ptr. We need
112     // to directly access the heap allocated memory inside the exception_ptr.
113     //
114     // std::exception_ptr is an opaque reinterpret_cast of
115     // std::shared_ptr<__ExceptionPtr>
116     // __ExceptionPtr is a non-virtual class with two members, a union and a
117     // bool. The union contains the now-undocumented EHExceptionRecord, which
118     // contains a struct which contains a void* which points to the heap
119     // allocated exception.
120     // We derive the offset to pExceptionObject via manual means.
121     FOLLY_PACK_PUSH
122     struct Win32ExceptionPtr {
123       char offset[40];
124       void* exceptionObject;
125     } FOLLY_PACK_ATTR;
126     FOLLY_PACK_POP
127
128     auto* win32ExceptionPtr =
129         reinterpret_cast<std::shared_ptr<Win32ExceptionPtr> const*>(
130             &ptr)->get();
131     return reinterpret_cast<std::uintptr_t>(win32ExceptionPtr->exceptionObject);
132   }
133 }
134 inline std::uintptr_t exception_wrapper::ExceptionPtr::as_int_(
135     std::exception_ptr const&,
136     AnyException e) {
137   return reinterpret_cast<std::uintptr_t>(e.typeinfo_) + 1;
138 }
139 inline bool exception_wrapper::ExceptionPtr::has_exception_() const {
140   return 0 == exception_or_type_ % 2;
141 }
142 inline std::exception const* exception_wrapper::ExceptionPtr::as_exception_()
143     const {
144   return reinterpret_cast<std::exception const*>(exception_or_type_);
145 }
146 inline std::type_info const* exception_wrapper::ExceptionPtr::as_type_() const {
147   return reinterpret_cast<std::type_info const*>(exception_or_type_ - 1);
148 }
149
150 inline void exception_wrapper::ExceptionPtr::copy_(
151     exception_wrapper const* from, exception_wrapper* to) {
152   ::new (static_cast<void*>(&to->eptr_)) ExceptionPtr(from->eptr_);
153 }
154 inline void exception_wrapper::ExceptionPtr::move_(
155     exception_wrapper* from, exception_wrapper* to) {
156   ::new (static_cast<void*>(&to->eptr_))
157       ExceptionPtr(std::move(from->eptr_));
158   delete_(from);
159 }
160 inline void exception_wrapper::ExceptionPtr::delete_(
161     exception_wrapper* that) {
162   that->eptr_.~ExceptionPtr();
163   that->vptr_ = &uninit_;
164 }
165 [[noreturn]] inline void exception_wrapper::ExceptionPtr::throw_(
166     exception_wrapper const* that) {
167   std::rethrow_exception(that->eptr_.ptr_);
168 }
169 inline std::type_info const* exception_wrapper::ExceptionPtr::type_(
170     exception_wrapper const* that) {
171   if (auto e = get_exception_(that)) {
172     return &typeid(*e);
173   }
174   return that->eptr_.as_type_();
175 }
176 inline std::exception const* exception_wrapper::ExceptionPtr::get_exception_(
177     exception_wrapper const* that) {
178   return that->eptr_.has_exception_() ? that->eptr_.as_exception_()
179                                       : nullptr;
180 }
181 inline exception_wrapper exception_wrapper::ExceptionPtr::get_exception_ptr_(
182     exception_wrapper const* that) {
183   return *that;
184 }
185
186 template <class Ex>
187 inline void exception_wrapper::InPlace<Ex>::copy_(
188     exception_wrapper const* from, exception_wrapper* to) {
189   ::new (static_cast<void*>(std::addressof(to->buff_.as<Ex>())))
190       Ex(from->buff_.as<Ex>());
191 }
192 template <class Ex>
193 inline void exception_wrapper::InPlace<Ex>::move_(
194     exception_wrapper* from, exception_wrapper* to) {
195   ::new (static_cast<void*>(std::addressof(to->buff_.as<Ex>())))
196       Ex(std::move(from->buff_.as<Ex>()));
197   delete_(from);
198 }
199 template <class Ex>
200 inline void exception_wrapper::InPlace<Ex>::delete_(
201     exception_wrapper* that) {
202   that->buff_.as<Ex>().~Ex();
203   that->vptr_ = &uninit_;
204 }
205 template <class Ex>
206 [[noreturn]] inline void exception_wrapper::InPlace<Ex>::throw_(
207     exception_wrapper const* that) {
208   throw that->buff_.as<Ex>(); // @nolint
209 }
210 template <class Ex>
211 inline std::type_info const* exception_wrapper::InPlace<Ex>::type_(
212     exception_wrapper const*) {
213   return &typeid(Ex);
214 }
215 template <class Ex>
216 inline std::exception const* exception_wrapper::InPlace<Ex>::get_exception_(
217     exception_wrapper const* that) {
218   return as_exception_or_null_(that->buff_.as<Ex>());
219 }
220 template <class Ex>
221 inline exception_wrapper exception_wrapper::InPlace<Ex>::get_exception_ptr_(
222     exception_wrapper const* that) {
223   try {
224     throw_(that);
225   } catch (Ex const& ex) {
226     return exception_wrapper{std::current_exception(), ex};
227   }
228 }
229
230 template <class Ex>
231 [[noreturn]] inline void
232 exception_wrapper::SharedPtr::Impl<Ex>::throw_() const {
233   throw ex_; // @nolint
234 }
235 template <class Ex>
236 inline std::exception const*
237 exception_wrapper::SharedPtr::Impl<Ex>::get_exception_() const noexcept {
238   return as_exception_or_null_(ex_);
239 }
240 template <class Ex>
241 inline exception_wrapper
242 exception_wrapper::SharedPtr::Impl<Ex>::get_exception_ptr_() const noexcept {
243   try {
244     throw_();
245   } catch (Ex& ex) {
246     return exception_wrapper{std::current_exception(), ex};
247   }
248 }
249 inline void exception_wrapper::SharedPtr::copy_(
250     exception_wrapper const* from, exception_wrapper* to) {
251   ::new (static_cast<void*>(std::addressof(to->sptr_)))
252       SharedPtr(from->sptr_);
253 }
254 inline void exception_wrapper::SharedPtr::move_(
255     exception_wrapper* from, exception_wrapper* to) {
256   ::new (static_cast<void*>(std::addressof(to->sptr_)))
257       SharedPtr(std::move(from->sptr_));
258   delete_(from);
259 }
260 inline void exception_wrapper::SharedPtr::delete_(
261     exception_wrapper* that) {
262   that->sptr_.~SharedPtr();
263   that->vptr_ = &uninit_;
264 }
265 [[noreturn]] inline void exception_wrapper::SharedPtr::throw_(
266     exception_wrapper const* that) {
267   that->sptr_.ptr_->throw_();
268   folly::assume_unreachable();
269 }
270 inline std::type_info const* exception_wrapper::SharedPtr::type_(
271     exception_wrapper const* that) {
272   return that->sptr_.ptr_->info_;
273 }
274 inline std::exception const* exception_wrapper::SharedPtr::get_exception_(
275     exception_wrapper const* that) {
276   return that->sptr_.ptr_->get_exception_();
277 }
278 inline exception_wrapper exception_wrapper::SharedPtr::get_exception_ptr_(
279     exception_wrapper const* that) {
280   return that->sptr_.ptr_->get_exception_ptr_();
281 }
282
283 template <class Ex, typename... As>
284 inline exception_wrapper::exception_wrapper(
285     OnHeapTag,
286     in_place_type_t<Ex>,
287     As&&... as)
288     : sptr_{std::make_shared<SharedPtr::Impl<Ex>>(std::forward<As>(as)...)},
289       vptr_(&SharedPtr::ops_) {}
290
291 template <class Ex, typename... As>
292 inline exception_wrapper::exception_wrapper(
293     InSituTag,
294     in_place_type_t<Ex>,
295     As&&... as)
296     : buff_{in_place_type<Ex>, std::forward<As>(as)...},
297       vptr_(&InPlace<Ex>::ops_) {}
298
299 inline exception_wrapper::exception_wrapper(exception_wrapper&& that) noexcept
300     : exception_wrapper{} {
301   (vptr_ = that.vptr_)->move_(&that, this); // Move into *this, won't throw
302 }
303
304 inline exception_wrapper::exception_wrapper(
305     exception_wrapper const& that) : exception_wrapper{} {
306   that.vptr_->copy_(&that, this); // could throw
307   vptr_ = that.vptr_;
308 }
309
310 // If `this == &that`, this move assignment operator leaves the object in a
311 // valid but unspecified state.
312 inline exception_wrapper& exception_wrapper::operator=(
313     exception_wrapper&& that) noexcept {
314   vptr_->delete_(this); // Free the current exception
315   (vptr_ = that.vptr_)->move_(&that, this); // Move into *this, won't throw
316   return *this;
317 }
318
319 inline exception_wrapper& exception_wrapper::operator=(
320     exception_wrapper const& that) {
321   exception_wrapper(that).swap(*this);
322   return *this;
323 }
324
325 inline exception_wrapper::~exception_wrapper() {
326   reset();
327 }
328
329 template <class Ex>
330 inline exception_wrapper::exception_wrapper(std::exception_ptr ptr, Ex& ex)
331     : eptr_{ptr, ExceptionPtr::as_int_(ptr, ex)},
332       vptr_(&ExceptionPtr::ops_) {
333   assert(eptr_.ptr_);
334 }
335
336 namespace exception_wrapper_detail {
337 template <class Ex>
338 Ex&& dont_slice(Ex&& ex) {
339   assert(typeid(ex) == typeid(_t<std::decay<Ex>>) ||
340        !"Dynamic and static exception types don't match. Exception would "
341         "be sliced when storing in exception_wrapper.");
342   return std::forward<Ex>(ex);
343 }
344 } // namespace exception_wrapper_detail
345
346 template <
347     class Ex,
348     class Ex_,
349     FOLLY_REQUIRES_DEF(
350         Conjunction<
351             exception_wrapper::IsStdException<Ex_>,
352             exception_wrapper::IsRegularExceptionType<Ex_>>::value)>
353 inline exception_wrapper::exception_wrapper(Ex&& ex)
354     : exception_wrapper{
355         PlacementOf<Ex_>{},
356         in_place_type<Ex_>,
357         exception_wrapper_detail::dont_slice(std::forward<Ex>(ex))} {
358 }
359
360 template <
361     class Ex,
362     class Ex_,
363     FOLLY_REQUIRES_DEF(
364         exception_wrapper::IsRegularExceptionType<Ex_>::value)>
365 inline exception_wrapper::exception_wrapper(in_place_t, Ex&& ex)
366     : exception_wrapper{
367         PlacementOf<Ex_>{},
368         in_place_type<Ex_>,
369         exception_wrapper_detail::dont_slice(std::forward<Ex>(ex))} {
370 }
371
372 template <
373     class Ex,
374     typename... As,
375     FOLLY_REQUIRES_DEF(
376         exception_wrapper::IsRegularExceptionType<Ex>::value)>
377 inline exception_wrapper::exception_wrapper(in_place_type_t<Ex>, As&&... as)
378     : exception_wrapper{
379         PlacementOf<Ex>{},
380         in_place_type<Ex>,
381         std::forward<As>(as)...} {
382 }
383
384 inline void exception_wrapper::swap(exception_wrapper& that) noexcept {
385   exception_wrapper tmp(std::move(that));
386   that = std::move(*this);
387   *this = std::move(tmp);
388 }
389
390 inline exception_wrapper::operator bool() const noexcept {
391   return vptr_ != &uninit_;
392 }
393
394 inline bool exception_wrapper::operator!() const noexcept {
395   return !static_cast<bool>(*this);
396 }
397
398 inline void exception_wrapper::reset() {
399   vptr_->delete_(this);
400 }
401
402 inline bool exception_wrapper::has_exception_ptr() const noexcept {
403   return vptr_ == &ExceptionPtr::ops_;
404 }
405
406 inline std::exception* exception_wrapper::get_exception() noexcept {
407   return const_cast<std::exception*>(vptr_->get_exception_(this));
408 }
409 inline std::exception const* exception_wrapper::get_exception() const noexcept {
410   return vptr_->get_exception_(this);
411 }
412
413 template <typename Ex>
414 inline Ex* exception_wrapper::get_exception() noexcept {
415   Ex* object{nullptr};
416   with_exception([&](Ex& ex) { object = &ex; });
417   return object;
418 }
419
420 template <typename Ex>
421 inline Ex const* exception_wrapper::get_exception() const noexcept {
422   Ex const* object{nullptr};
423   with_exception([&](Ex const& ex) { object = &ex; });
424   return object;
425 }
426
427 inline std::exception_ptr const& exception_wrapper::to_exception_ptr()
428     noexcept {
429   // Computing an exception_ptr is expensive so cache the result.
430   return (*this = vptr_->get_exception_ptr_(this)).eptr_.ptr_;
431 }
432 inline std::exception_ptr exception_wrapper::to_exception_ptr() const noexcept {
433   return vptr_->get_exception_ptr_(this).eptr_.ptr_;
434 }
435
436 inline std::type_info const& exception_wrapper::none() noexcept {
437   return typeid(void);
438 }
439 inline std::type_info const& exception_wrapper::unknown() noexcept {
440   return typeid(Unknown);
441 }
442
443 inline std::type_info const& exception_wrapper::type() const noexcept {
444   return *vptr_->type_(this);
445 }
446
447 inline folly::fbstring exception_wrapper::what() const {
448   if (auto e = get_exception()) {
449     return class_name() + ": " + e->what();
450   }
451   return class_name();
452 }
453
454 inline folly::fbstring exception_wrapper::class_name() const {
455   auto& ti = type();
456   return ti == none()
457       ? ""
458       : ti == unknown() ? "<unknown exception>" : folly::demangle(ti);
459 }
460
461 template <class Ex>
462 inline bool exception_wrapper::is_compatible_with() const noexcept {
463   return with_exception([](Ex const&) {});
464 }
465
466 [[noreturn]] inline void exception_wrapper::throw_exception() const {
467   vptr_->throw_(this);
468   onNoExceptionError(__func__);
469 }
470
471 template <class CatchFn, bool IsConst>
472 struct exception_wrapper::ExceptionTypeOf {
473   using type = arg_type<_t<std::decay<CatchFn>>>;
474   static_assert(
475       std::is_reference<type>::value,
476       "Always catch exceptions by reference.");
477   static_assert(
478       !IsConst || std::is_const<_t<std::remove_reference<type>>>::value,
479       "handle() or with_exception() called on a const exception_wrapper "
480       "and asked to catch a non-const exception. Handler will never fire. "
481       "Catch exception by const reference to fix this.");
482 };
483
484 // Nests a throw in the proper try/catch blocks
485 template <bool IsConst>
486 struct exception_wrapper::HandleReduce {
487   bool* handled_;
488
489   template <
490       class ThrowFn,
491       class CatchFn,
492       FOLLY_REQUIRES(!IsCatchAll<CatchFn>::value)>
493   auto operator()(ThrowFn&& th, CatchFn& ca) const {
494     using Ex = _t<ExceptionTypeOf<CatchFn, IsConst>>;
495     return [ th = std::forward<ThrowFn>(th), &ca, handled_ = handled_ ] {
496       try {
497         th();
498       } catch (Ex& e) {
499         // If we got here because a catch function threw, rethrow.
500         if (*handled_) {
501           throw;
502         }
503         *handled_ = true;
504         ca(e);
505       }
506     };
507   }
508
509   template <
510       class ThrowFn,
511       class CatchFn,
512       FOLLY_REQUIRES(IsCatchAll<CatchFn>::value)>
513   auto operator()(ThrowFn&& th, CatchFn& ca) const {
514     return [ th = std::forward<ThrowFn>(th), &ca, handled_ = handled_ ] {
515       try {
516         th();
517       } catch (...) {
518         // If we got here because a catch function threw, rethrow.
519         if (*handled_) {
520           throw;
521         }
522         *handled_ = true;
523         ca();
524       }
525     };
526   }
527 };
528
529 // When all the handlers expect types derived from std::exception, we can
530 // sometimes invoke the handlers without throwing any exceptions.
531 template <bool IsConst>
532 struct exception_wrapper::HandleStdExceptReduce {
533   using StdEx = AddConstIf<IsConst, std::exception>;
534
535   template <
536       class ThrowFn,
537       class CatchFn,
538       FOLLY_REQUIRES(!IsCatchAll<CatchFn>::value)>
539   auto operator()(ThrowFn&& th, CatchFn& ca) const {
540     using Ex = _t<ExceptionTypeOf<CatchFn, IsConst>>;
541     return [ th = std::forward<ThrowFn>(th), &ca ](auto&& continuation)
542         -> StdEx* {
543       if (auto e = const_cast<StdEx*>(th(continuation))) {
544         if (auto e2 = dynamic_cast<_t<std::add_pointer<Ex>>>(e)) {
545           ca(*e2);
546         } else {
547           return e;
548         }
549       }
550       return nullptr;
551     };
552   }
553
554   template <
555       class ThrowFn,
556       class CatchFn,
557       FOLLY_REQUIRES(IsCatchAll<CatchFn>::value)>
558   auto operator()(ThrowFn&& th, CatchFn& ca) const {
559     return [ th = std::forward<ThrowFn>(th), &ca ](auto&&) -> StdEx* {
560       // The following continuation causes ca() to execute if *this contains
561       // an exception /not/ derived from std::exception.
562       auto continuation = [&ca](StdEx* e) {
563         return e != nullptr ? e : ((void)ca(), nullptr);
564       };
565       if (th(continuation) != nullptr) {
566         ca();
567       }
568       return nullptr;
569     };
570   }
571 };
572
573 // Called when some types in the catch clauses are not derived from
574 // std::exception.
575 template <class This, class... CatchFns>
576 inline void exception_wrapper::handle_(
577     std::false_type, This& this_, CatchFns&... fns) {
578   bool handled = false;
579   auto impl = exception_wrapper_detail::fold(
580       HandleReduce<std::is_const<This>::value>{&handled},
581       [&] { this_.throw_exception(); },
582       fns...);
583   impl();
584 }
585
586 // Called when all types in the catch clauses are either derived from
587 // std::exception or a catch-all clause.
588 template <class This, class... CatchFns>
589 inline void exception_wrapper::handle_(
590     std::true_type, This& this_, CatchFns&... fns) {
591   using StdEx = exception_wrapper_detail::
592       AddConstIf<std::is_const<This>::value, std::exception>;
593   auto impl = exception_wrapper_detail::fold(
594       HandleStdExceptReduce<std::is_const<This>::value>{},
595       [&](auto&& continuation) {
596         return continuation(
597             const_cast<StdEx*>(this_.vptr_->get_exception_(&this_)));
598       },
599       fns...);
600   // This continuation gets evaluated if CatchFns... does not include a
601   // catch-all handler. It is a no-op.
602   auto continuation = [](StdEx* ex) { return ex; };
603   if (StdEx* e = impl(continuation)) {
604     throw *e; // Not handled. Throw.
605   }
606 }
607
608 namespace exception_wrapper_detail {
609 template <class Ex, class Fn>
610 struct catch_fn {
611   Fn fn_;
612   auto operator()(Ex& ex) {
613     return fn_(ex);
614   }
615 };
616
617 template <class Ex, class Fn>
618 inline catch_fn<Ex, Fn> catch_(Ex*, Fn fn) {
619   return {std::move(fn)};
620 }
621 template <class Fn>
622 inline Fn catch_(void const*, Fn fn) {
623   return fn;
624 }
625 } // namespace exception_wrapper_detail
626
627 template <class Ex, class This, class Fn>
628 inline bool exception_wrapper::with_exception_(This& this_, Fn fn_) {
629   if (!this_) {
630     return false;
631   }
632   bool handled = true;
633   auto fn = exception_wrapper_detail::catch_(
634       static_cast<Ex*>(nullptr), std::move(fn_));
635   auto&& all = [&](...) { handled = false; };
636   handle_(IsStdException<arg_type<decltype(fn)>>{}, this_, fn, all);
637   return handled;
638 }
639
640 template <class Ex, class Fn>
641 inline bool exception_wrapper::with_exception(Fn fn) {
642   return with_exception_<Ex>(*this, std::move(fn));
643 }
644 template <class Ex, class Fn>
645 inline bool exception_wrapper::with_exception(Fn fn) const {
646   return with_exception_<Ex const>(*this, std::move(fn));
647 }
648
649 template <class... CatchFns>
650 inline void exception_wrapper::handle(CatchFns... fns) {
651   using AllStdEx =
652       exception_wrapper_detail::AllOf<IsStdException, arg_type<CatchFns>...>;
653   if (!*this) {
654     onNoExceptionError(__func__);
655   }
656   this->handle_(AllStdEx{}, *this, fns...);
657 }
658 template <class... CatchFns>
659 inline void exception_wrapper::handle(CatchFns... fns) const {
660   using AllStdEx =
661       exception_wrapper_detail::AllOf<IsStdException, arg_type<CatchFns>...>;
662   if (!*this) {
663     onNoExceptionError(__func__);
664   }
665   this->handle_(AllStdEx{}, *this, fns...);
666 }
667
668 } // namespace folly