You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RAFT has a runtime_exception that we try to catch and throw everywhere but it's more of a blanket for anything that can go wrong at runtime and it doesn't actually provide the caller much useful information that they can act upon through code. For example, a user of RAFT's C++ API might very well want to know if a specific type of error happened, such as somehting that might have impacted a file-based operation so they can roll back.
This is being requested by users. It's something we should put some time and thought into.
The text was updated successfully, but these errors were encountered:
RAFT has a
runtime_exception
that we try to catch and throw everywhere but it's more of a blanket for anything that can go wrong at runtime and it doesn't actually provide the caller much useful information that they can act upon through code. For example, a user of RAFT's C++ API might very well want to know if a specific type of error happened, such as somehting that might have impacted a file-based operation so they can roll back.This is being requested by users. It's something we should put some time and thought into.
The text was updated successfully, but these errors were encountered: