bad_result_access_with<EC>

Exception type publicly inheriting from bad_result_access , and thus also std::logic_error , indicating an incorrect observation of value occurred. The error value at the time of the exception throw is moved or copied into this type, and is available using the .error() observer which comes in lvalue ref, const lvalue ref, rvalue ref, and const rvalue ref overloads.

The primary purpose of this exception type is to enable standing in for P0323 std::expected<T, E> ’s bad_expected_access<E> which is thrown on incorrect wide value observation. This is why it is only ever EC which is thrown with bad_result_access_with<EC> on value observation only, and only when there is an error available. See the throw_bad_result_access<EC> policy for more information.

Requires: Nothing.

Namespace: OUTCOME_V2_NAMESPACE

Header: <outcome/bad_access.hpp>