Return the error message as a string.
| 52 | |
| 53 | /// Return the error message as a string. |
| 54 | virtual std::string message() const { |
| 55 | std::string Msg; |
| 56 | raw_string_ostream OS(Msg); |
| 57 | log(OS); |
| 58 | return OS.str(); |
| 59 | } |
| 60 | |
| 61 | /// Convert this error to a std::error_code. |
| 62 | /// |