15#ifndef _RBTMODELERROR_H_
16#define _RBTMODELERROR_H_
18#include "rxdock/Error.h"
22const std::string IDS_MODEL_ERROR =
"RBT_MODEL_ERROR";
27 ModelError(
const std::string &strFile,
int nLine,
28 const std::string &strMessage =
"")
29 :
Error(IDS_MODEL_ERROR, strFile, nLine, strMessage) {}
33 ModelError(
const std::string &strName,
const std::string &strFile,
int nLine,
34 const std::string &strMessage =
"")
35 :
Error(strName, strFile, nLine, strMessage) {}
Definition ModelError.h:25