MCPcopy Create free account
hub / github.com/Naios/function2 / bad_function_call

Class bad_function_call

include/function2/function2.hpp:508–515  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

506#if !defined(FU2_HAS_DISABLED_EXCEPTIONS)
507#if defined(FU2_HAS_NO_FUNCTIONAL_HEADER)
508struct bad_function_call : std::exception {
509 bad_function_call() noexcept {
510 }
511
512 char const* what() const noexcept override {
513 return "bad function call";
514 }
515};
516#else
517using std::bad_function_call;
518#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected