cantera/Cantera/src/equil/vcs_Exception.cpp
Harry Moffat d0e99aec18 Added vcs_nonideal, another equilibrium solver that can handle
nonideal thermo multiphase systems.
2007-12-19 21:19:28 +00:00

14 lines
194 B
C++

#include "vcs_Exception.h"
namespace VCSnonideal {
vcsError::vcsError(std::string proc, std::string msg, int errorCode) :
m_proc(proc),
m_msg(msg),
m_errorCode(errorCode)
{
}
}