Cantera  2.0
vcs_Exception.cpp
1 
2 #include "vcs_Exception.h"
3 
4 namespace VCSnonideal
5 {
6 
7 vcsError::vcsError(std::string proc, std::string msg, int errorCode) :
8  m_proc(proc),
9  m_msg(msg),
10  m_errorCode(errorCode)
11 {
12 
13 }
14 
15 }