LLVM 22.0.0git
|
Special ErrorInfo subclass representing a list of ErrorInfos. More...
#include "llvm/Support/Error.h"
Public Member Functions | |
void | log (raw_ostream &OS) const override |
Print an error message to an output stream. | |
std::error_code | convertToErrorCode () const override |
Convert this error to a std::error_code. | |
Public Member Functions inherited from llvm::ErrorInfo< ErrorList > | |
const void * | dynamicClassID () const override |
bool | isA (const void *const ClassID) const override |
Public Member Functions inherited from llvm::ErrorInfoBase | |
virtual | ~ErrorInfoBase ()=default |
virtual std::string | message () const |
Return the error message as a string. | |
template<typename ErrorInfoT> | |
bool | isA () const |
Static Public Attributes | |
static char | ID = 0 |
Friends | |
template<typename... HandlerTs> | |
Error | handleErrors (Error E, HandlerTs &&... Handlers) |
Pass the ErrorInfo(s) contained in E to their respective handlers. | |
template<typename HandlerT> | |
void | visitErrors (const Error &E, HandlerT H) |
Visit all the ErrorInfo(s) contained in E by passing them to the respective handler, without consuming the error. | |
Error | joinErrors (Error E1, Error E2) |
Concatenate errors. |
Additional Inherited Members | |
Static Public Member Functions inherited from llvm::ErrorInfo< ErrorList > | |
static const void * | classID () |
Static Public Member Functions inherited from llvm::ErrorInfoBase | |
static const void * | classID () |
Special ErrorInfo subclass representing a list of ErrorInfos.
Instances of this class are constructed by joinError.
|
overridevirtual |
Convert this error to a std::error_code.
This is a temporary crutch to enable interaction with code still using std::error_code. It will be removed in the future.
Implements llvm::ErrorInfoBase.
|
inlineoverridevirtual |
Print an error message to an output stream.
Implements llvm::ErrorInfoBase.
Pass the ErrorInfo(s) contained in E to their respective handlers.
Any unhandled errors (or Errors returned by handlers) are re-concatenated and returned. Because this function returns an error, its result must also be checked or returned. If you intend to handle all errors use handleAllErrors (which returns void, and will abort() on unhandled errors) instead.