Commit 31468045 authored by Pavel Vainerman's avatar Pavel Vainerman

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

parent aaec1208
......@@ -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);
......
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