mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-02-15 08:15:06 -05:00
Bicubic coefficients are calculated in all cells
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
@@ -46,6 +46,15 @@ public:
|
||||
virtual const char* what() const throw(){ return err.c_str(); }
|
||||
};
|
||||
|
||||
class KeyError: public CoolPropBaseError
|
||||
{
|
||||
public:
|
||||
KeyError() throw() {};
|
||||
KeyError(std::string errstring) throw() {err=errstring;};
|
||||
~KeyError() throw() {};
|
||||
virtual const char* what() const throw(){ return err.c_str(); }
|
||||
};
|
||||
|
||||
class AttributeError: public CoolPropBaseError
|
||||
{
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user