Cantera
2.0
|
Definitions for the classes that are thrown when Cantera experiences an error condition (also contains errorhandling module text - see Error Handling). More...
#include <exception>
#include <iostream>
#include <string>
Go to the source code of this file.
Classes | |
class | CanteraError |
Base class for exceptions thrown by Cantera classes. More... | |
class | ArraySizeError |
Array size error. More... | |
class | IndexError |
An array index is out of range. More... | |
Namespaces | |
namespace | Cantera |
Provides class Nucleus. | |
Macros | |
#define | XSTR_TRACE_LINE(s) STR_TRACE_LINE(s) |
Provides a line number. | |
#define | STR_TRACE_LINE(s) #s |
Provides a line number. | |
#define | STR_TRACE (std::string(__FILE__) + ":" + XSTR_TRACE_LINE(__LINE__)) |
Provides a std::string variable containing the file and line number. | |
#define | AssertTrace(expr) ((expr) ? (void) 0 : throw Cantera::CanteraError(STR_TRACE, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown. | |
#define | AssertThrow(expr, procedure) ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure, std::string("failed assert: ") + #expr)) |
Assertion must be true or an error is thrown. | |
#define | AssertThrowMsg(expr, procedure, message) ((expr) ? (void) 0 : throw Cantera::CanteraError(procedure + std::string(": at failed assert: \"") + std::string(#expr) + std::string("\""), message)) |
Assertion must be true or an error is thrown. | |
Functions | |
void | deprecatedMethod (std::string classnm, std::string oldnm, std::string newnm) |
Print a warning when a deprecated method is called. | |
void | removeAtVersion (std::string func, std::string version) |
Throw an error condition for a procedure that has been removed. | |
Definitions for the classes that are thrown when Cantera experiences an error condition (also contains errorhandling module text - see Error Handling).
Definition in file ctexceptions.h.
#define XSTR_TRACE_LINE | ( | s | ) | STR_TRACE_LINE(s) |
Provides a line number.
Definition at line 203 of file ctexceptions.h.
#define STR_TRACE_LINE | ( | s | ) | #s |
Provides a line number.
Definition at line 206 of file ctexceptions.h.
#define STR_TRACE (std::string(__FILE__) + ":" + XSTR_TRACE_LINE(__LINE__)) |
Provides a std::string variable containing the file and line number.
This is a std:string containing the file name and the line number
Definition at line 212 of file ctexceptions.h.