Chaste Release::3.1
|
#include <Exception.hpp>
Public Member Functions | |
Exception (const std::string &rMessage, const std::string &rFilename, unsigned lineNumber) | |
std::string | GetMessage () const |
std::string | GetShortMessage () const |
std::string | CheckShortMessage (std::string expected) const |
std::string | CheckShortMessageContains (std::string expected) const |
Static Public Member Functions | |
static void | Terminate (const std::string &rMessage, const std::string &rFilename, unsigned lineNumber) |
Protected Member Functions | |
void | SetMessage (const std::string &rMessage, const std::string &rFilename, unsigned lineNumber) |
Private Attributes | |
std::string | mMessage |
std::string | mShortMessage |
Exception class. All exceptions thrown by this code are currently instances of this class.
Definition at line 63 of file Exception.hpp.
Exception::Exception | ( | const std::string & | rMessage, |
const std::string & | rFilename, | ||
unsigned | lineNumber | ||
) |
Construct an exception with a message string.
rMessage | the message |
rFilename | which source file threw the exception |
lineNumber | which line number of the source file threw the exception |
Definition at line 45 of file Exception.cpp.
References SetMessage().
std::string Exception::CheckShortMessage | ( | std::string | expected | ) | const |
Helper method for checking we have the right exception.
Checks that mShortMessage matches that given, and returns a suitable error message string if not. If they do match, returns the empty string.
expected | the expected value of mShortMessage |
Definition at line 77 of file Exception.cpp.
References mShortMessage.
std::string Exception::CheckShortMessageContains | ( | std::string | expected | ) | const |
Helper method for checking we have the right exception.
Checks that mShortMessage contains the given string, and returns a suitable error message string if not. If it does, returns the empty string.
expected | some expected substring of mShortMessage |
Definition at line 87 of file Exception.cpp.
References mShortMessage.
Referenced by CardiacSimulation::ReadParametersFromFile().
std::string Exception::GetMessage | ( | ) | const |
Get the message associated with the exception with file and line number
Definition at line 67 of file Exception.cpp.
References mMessage.
Referenced by AbstractConvergenceTester< CELL, CARDIAC_PROBLEM, DIM, PROBLEM_DIM >::Converge(), and CellMLToSharedLibraryConverter::ConvertCellmlToSo().
std::string Exception::GetShortMessage | ( | ) | const |
Get the message associated with the exception
Definition at line 72 of file Exception.cpp.
References mShortMessage.
Referenced by PropagationPropertiesCalculator::CalculateAllActionPotentialDurationsForNodeRange(), AbstractCellBasedSimulation< ELEMENT_DIM, SPACE_DIM >::DoCellBirth(), and AbstractCardiacProblem< ELEMENT_DIM, SPACE_DIM, PROBLEM_DIM >::Initialise().
void Exception::SetMessage | ( | const std::string & | rMessage, |
const std::string & | rFilename, | ||
unsigned | lineNumber | ||
) | [protected] |
Allow subclasses to reset the exception message after construction of the base class, if desired.
rMessage | the message |
rFilename | which source file threw the exception |
lineNumber | which line number of the source file threw the exception |
Definition at line 58 of file Exception.cpp.
References mMessage, and mShortMessage.
Referenced by Exception().
void Exception::Terminate | ( | const std::string & | rMessage, |
const std::string & | rFilename, | ||
unsigned | lineNumber | ||
) | [static] |
Level 4 error (Termination). Execution cannot continue from this point and hence should be terminated (even when running with NDEBUG or in parallel).
rMessage | An error message to appear on the screen |
rFilename | which source file produced the termination error |
lineNumber | which line number of the source file produced the termination error |
Definition at line 98 of file Exception.cpp.
std::string Exception::mMessage [private] |
Full exception message - includes file and line number.
Definition at line 134 of file Exception.hpp.
Referenced by GetMessage(), and SetMessage().
std::string Exception::mShortMessage [private] |
Short exception message - just text of the exception.
Definition at line 135 of file Exception.hpp.
Referenced by CheckShortMessage(), CheckShortMessageContains(), GetShortMessage(), and SetMessage().