Error class for memory allocation errors. More...
#include <error.hpp>
Public Member Functions | |
ErrorNoMem (const ErrorLocation &loc) | |
Constructor for memory allocation error with standard error message. | |
ErrorNoMem (const ErrorLocation &loc, const std::string &str) | |
Constructor for memory allocation error with custom error message. | |
![]() | |
Error () | |
Default constructor for error class. | |
Error (const std::string &str) | |
Constructor for error class with error message. | |
Error (const ErrorLocation &loc) | |
Constructor for error class with location information. | |
Error (const ErrorLocation &loc, const std::string &str) | |
Constructor for error class with location information and error message. | |
std::string | get_error_message (void) |
Return error message. | |
void | print_error_message (std::ostream &os, bool traceprint=true) |
Print a standard error message to os. | |
![]() | |
ExceptionTracer () | |
Default constructor for exception tracer. Saves the backtrace of the program at this location for printing it when the error is caught. | |
void | print_trace (std::ostream &os) |
Print the backtrace to os. | |
Additional Inherited Members | |
![]() | |
std::string | _error_str |
Error class for memory allocation errors.
ErrorNoMem::ErrorNoMem | ( | const ErrorLocation & | loc | ) |
Constructor for memory allocation error with standard error message.
The error message is "memory allocation error".
ErrorNoMem::ErrorNoMem | ( | const ErrorLocation & | loc, |
const std::string & | str | ||
) |
Constructor for memory allocation error with custom error message.