Commit bdcfdf7e authored by Pavel Vainerman's avatar Pavel Vainerman

(minor): "Not find.." ==> "Not found.."

parent 5a31f2d3
......@@ -58,7 +58,7 @@ IOControl::IOControl( UniSetTypes::ObjectId id, UniSetTypes::ObjectId icID,
string cname = conf->getArgParam("--"+prefix+"-confnode",myname);
cnode = conf->getNode(cname);
if( cnode == NULL )
throw SystemError("Not find conf-node " + cname + " for " + myname);
throw SystemError("Not found conf-node " + cname + " for " + myname);
defCardNum = conf->getArgInt("--"+prefix+"-default-cardnum","-1");
maxCardNum = conf->getArgInt("--"+prefix+"-max-cardnum","10");
......
......@@ -35,7 +35,7 @@ prefix(prefix)
// xmlNode* cnode = conf->getNode(myname);
cnode = conf->getNode(myname);
if( cnode == NULL )
throw UniSetTypes::SystemError("(MBSlave): Not find conf-node for " + myname );
throw UniSetTypes::SystemError("(MBSlave): Not found conf-node for " + myname );
shm = new SMInterface(shmId,&ui,objId,ic);
......
......@@ -50,7 +50,7 @@ SharedMemory::SharedMemory( ObjectId id, string datafile, std::string confname )
xmlNode* cnode = conf->getNode(cname);
if( cnode == NULL )
throw SystemError("Not find conf-node for SharedMemory");
throw SystemError("Not found conf-node for " + cname );
UniXML_iterator it(cnode);
......
......@@ -28,7 +28,7 @@ smReadyTimeout(15000)
{
cnode = conf->getNode(myname);
if( cnode == NULL )
throw UniSetTypes::SystemError("(UniExchange): Not find conf-node for " + myname );
throw UniSetTypes::SystemError("(UniExchange): Not found conf-node for " + myname );
shm = new SMInterface(shmID,&ui,id,ic);
......
......@@ -42,7 +42,7 @@ namespace UniSetExtensions
if( cnode == NULL )
{
ostringstream err;
err << "Not find conf-node for HeartBeatTime";
err << "Not found conf-node for HeartBeatTime";
cerr << err.str() << endl;
throw SystemError(err.str());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment