67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
//! @file ctexceptions.cpp
|
|
#include "cantera/base/ctexceptions.h"
|
|
#include "application.h"
|
|
#include "cantera/base/global.h"
|
|
|
|
#include <sstream>
|
|
|
|
namespace Cantera
|
|
{
|
|
|
|
// *** Exceptions ***
|
|
|
|
static const char* stars = "***********************************************************************\n";
|
|
|
|
CanteraError::CanteraError(const std::string& procedure) :
|
|
procedure_(procedure),
|
|
saved_(false)
|
|
{
|
|
}
|
|
|
|
void CanteraError::save()
|
|
{
|
|
warn_deprecated("CanteraError::save", "To be removed after Cantera 2.3.");
|
|
if (!saved_) {
|
|
Application::Instance()->addError(procedure_, getMessage());
|
|
saved_ = true;
|
|
}
|
|
}
|
|
|
|
const char* CanteraError::what() const throw()
|
|
{
|
|
try {
|
|
formattedMessage_ = "\n";
|
|
formattedMessage_ += stars;
|
|
formattedMessage_ += getClass();
|
|
if (procedure_.size()) {
|
|
formattedMessage_ += " thrown by " + procedure_;
|
|
}
|
|
formattedMessage_ += ":\n" + getMessage();
|
|
if (formattedMessage_.compare(formattedMessage_.size()-1, 1, "\n")) {
|
|
formattedMessage_.append("\n");
|
|
}
|
|
formattedMessage_ += stars;
|
|
} catch (...) {
|
|
// Something went terribly wrong and we couldn't even format the message.
|
|
}
|
|
return formattedMessage_.c_str();
|
|
}
|
|
|
|
std::string CanteraError::getMessage() const
|
|
{
|
|
return msg_;
|
|
}
|
|
|
|
std::string ArraySizeError::getMessage() const
|
|
{
|
|
return fmt::format("Array size ({}) too small. Must be at least {}.",
|
|
sz_, reqd_);
|
|
}
|
|
|
|
std::string IndexError::getMessage() const
|
|
{
|
|
return fmt::format("IndexError: {}[{}] outside valid range of 0 to {}.",
|
|
arrayName_, m_, mmax_);
|
|
}
|
|
|
|
} // namespace Cantera
|