Cantera 2.6.0
ctexceptions.cpp
Go to the documentation of this file.
1//! @file ctexceptions.cpp
2
3// This file is part of Cantera. See License.txt in the top-level directory or
4// at https://cantera.org/license.txt for license and copyright information.
5
7#include "application.h"
9
10#include <sstream>
11
12namespace Cantera
13{
14
15// *** Exceptions ***
16
17static const char* stars = ("*****************************************"
18 "**************************************\n");
19
20CanteraError::CanteraError(const std::string& procedure) :
21 procedure_(procedure)
22{
23}
24
25const char* CanteraError::what() const throw()
26{
27 try {
28 formattedMessage_ = "\n";
29 formattedMessage_ += stars;
31 if (procedure_.size()) {
32 formattedMessage_ += " thrown by " + procedure_;
33 }
34 formattedMessage_ += ":\n" + getMessage();
35 if (formattedMessage_.compare(formattedMessage_.size()-1, 1, "\n")) {
36 formattedMessage_.append("\n");
37 }
38 formattedMessage_ += stars;
39 } catch (...) {
40 // Something went terribly wrong and we couldn't even format the message.
41 }
42 return formattedMessage_.c_str();
43}
44
45std::string CanteraError::getMessage() const
46{
47 return msg_;
48}
49
50std::string ArraySizeError::getMessage() const
51{
52 return fmt::format("Array size ({}) too small. Must be at least {}.",
53 sz_, reqd_);
54}
55
56std::string IndexError::getMessage() const
57{
58 return fmt::format("IndexError: {}[{}] outside valid range of 0 to {}.",
59 arrayName_, m_, mmax_);
60}
61
62} // namespace Cantera
virtual std::string getMessage() const
Method overridden by derived classes to format the error message.
virtual std::string getMessage() const
Method overridden by derived classes to format the error message.
std::string msg_
Message associated with the exception.
Definition: ctexceptions.h:116
virtual std::string getClass() const
Method overridden by derived classes to indicate their type.
Definition: ctexceptions.h:99
std::string procedure_
The name of the procedure where the exception occurred.
Definition: ctexceptions.h:112
const char * what() const
Get a description of the error.
std::string formattedMessage_
Formatted message returned by what()
Definition: ctexceptions.h:113
CanteraError()
Protected default constructor discourages throwing errors containing no information.
Definition: ctexceptions.h:106
virtual std::string getMessage() const
Method overridden by derived classes to format the error message.
Definitions for the classes that are thrown when Cantera experiences an error condition (also contain...
This file contains definitions for utility functions and text for modules, inputfiles,...
Namespace for the Cantera kernel.
Definition: AnyMap.h:29