diff --git a/crlcore/src/ccore/blif/BlifParser.cpp b/crlcore/src/ccore/blif/BlifParser.cpp index 4f9504f3..d0129763 100644 --- a/crlcore/src/ccore/blif/BlifParser.cpp +++ b/crlcore/src/ccore/blif/BlifParser.cpp @@ -676,11 +676,11 @@ namespace { Plug* plug = instance->getPlug( masterNet ); if(not plug) { ostringstream tmes; - tmes << "The plug in net <" << netName << "> " - << "and master net <" << masterNetName << "> hasn't been found " - << "for instance <" << subckt->getInstanceName() << "> " - << "of model <" << subckt->getModelName() << ">" - << "in model <" << getCell()->getName() << ">" + tmes << "The plug in net \"" << netName << "\" " + << "for master net \"" << masterNetName << "\" hasn't been found.\n " + << "(instance \"" << subckt->getInstanceName() << "\" " + << "of model \"" << subckt->getModelName() << "\" " + << "in model \"" << getCell()->getName() << "\")" << endl; throw Error(tmes.str()); }