Reference documentation for deal.II version 9.0.0
|
#include <deal.II/base/exceptions.h>
Public Member Functions | |
virtual void | print_info (std::ostream &out) const |
Public Member Functions inherited from ExceptionBase | |
ExceptionBase () | |
ExceptionBase (const ExceptionBase &exc) | |
virtual | ~ExceptionBase () noexcept |
ExceptionBase | operator= (const ExceptionBase &)=delete |
void | set_fields (const char *file, const int line, const char *function, const char *cond, const char *exc_name) |
virtual const char * | what () const noexcept |
const char * | get_exc_name () const |
void | print_exc_data (std::ostream &out) const |
void | print_stack_trace (std::ostream &out) const |
Additional Inherited Members | |
Protected Attributes inherited from ExceptionBase | |
const char * | file |
unsigned int | line |
const char * | function |
const char * | cond |
const char * | exc |
char ** | stacktrace |
int | n_stacktrace_frames |
void * | raw_stacktrace [25] |
Exception for MPI errors. This exception is only defined if deal.II
is compiled with MPI support. This exception should be used with AssertThrow
to check error codes of MPI functions. For example:
or, using the convenience macro AssertThrowMPI
,
If the assertion fails then the error code will be used to print a helpful message to the screen by utilizing the MPI_Error_string
function.
Definition at line 920 of file exceptions.h.
|
virtual |
Print more specific information about the exception which occurred. Overload this function in your own exception classes.
Reimplemented from ExceptionBase.
Definition at line 345 of file exceptions.cc.