Captures diagnostics related to a ROOT runtime error.
Definition at line 77 of file RError.hxx.
Classes | |
struct | RLocation |
Public Member Functions | |
RError (const std::string &message, RLocation &&sourceLocation) | |
Used by R__FAIL. More... | |
void | AddFrame (RLocation &&sourceLocation) |
Used by R__FORWARD_RESULT. More... | |
void | AppendToMessage (const std::string &info) |
Add more information to the diagnostics. More... | |
std::string | GetReport () const |
Format a dignostics report, e.g. for an exception message. More... | |
const std::vector< RLocation > & | GetStackTrace () const |
Private Attributes | |
std::string | fMessage |
User-facing error message. More... | |
std::vector< RLocation > | fStackTrace |
The location of the error related to fMessage plus upper frames if the error is forwarded through the call stack. More... | |
#include <ROOT/RError.hxx>
ROOT::Experimental::RError::RError | ( | const std::string & | message, |
RLocation && | sourceLocation | ||
) |
Used by R__FAIL.
Definition at line 35 of file RError.cxx.
Used by R__FORWARD_RESULT.
Definition at line 45 of file RError.cxx.
|
inline |
Add more information to the diagnostics.
Definition at line 102 of file RError.hxx.
std::string ROOT::Experimental::RError::GetReport | ( | ) | const |
Format a dignostics report, e.g. for an exception message.
Definition at line 25 of file RError.cxx.
|
inline |
Definition at line 105 of file RError.hxx.
|
private |
User-facing error message.
Definition at line 92 of file RError.hxx.
|
private |
The location of the error related to fMessage plus upper frames if the error is forwarded through the call stack.
Definition at line 94 of file RError.hxx.