12 template <
typename FirstArg,
typename... Args>
13 Exception(
const IString &s,
const FirstArg &fa,Args&&... args) { message_ = fmt::format(convertPercentToBracket((s)), fa, args...); }
19 Exception &operator=(
Exception &&e) { message_ = std::move(e.message_);
return *
this; }
22 BASE_EXPORT const char *
what()
const throw()
override {
return message_.c_str(); }
44 :
Exception(
"Processing interrupted by user."), safe_(safe), state_(
state) { }
Base exception class for all Itasca code.
Definition baseexception.h:10
BASE_EXPORT const char * what() const override
Returns the contents of the error message as a const char.
Definition baseexception.h:22
void setMessage(const IString &s)
Allows the message carried by the exception to be replaced with a new one.
Definition baseexception.h:25
Exception thrown when interruption occurs, e.g. user press ESC key.
Definition baseexception.h:38
BASE_EXPORT IString state() const
Definition baseexception.h:52
BASE_EXPORT InterruptException(bool safe, const IString &state=IString())
Definition baseexception.h:43
BASE_EXPORT bool wasSafe() const
returns TRUE if the interrupt was "Safe", in that the model was left in a repeatable and valid state.
Definition baseexception.h:47
Exception thrown when processing is done.
Definition baseexception.h:32
#define BASE_EXPORT
Definition basedef.h:24