Remove unneccesary “throw”

This commit is contained in:
Thanh C. Tran
2016-11-22 15:36:50 +01:00
parent 43ac482677
commit fefc2a6646
3 changed files with 1 additions and 7 deletions

View File

@@ -154,7 +154,7 @@ void setUpDummy(tlm::tlm_generic_payload& payload, Bank& bank);
("Invalid string \"" + s + "\" for conversion into enum \"" \
+ BOOST_PP_STRINGIZE(enumName) + "\"").c_str() \
); \
throw; \
\
} \
}

View File

@@ -142,7 +142,6 @@ void Configuration::setParameter(std::string name, std::string value)
else if(name == "WindowSize")
if(string2int(value) < 1) {
SC_REPORT_FATAL("Configuration", ("Invalid value for parameter " + name + ". This parameter must be at least one.").c_str());
throw;
}
else
WindowSize = string2int(value);
@@ -159,7 +158,6 @@ void Configuration::setParameter(std::string name, std::string value)
+ ". Value is out of range. The maximum value according to "
+ "the address mapping configuration file is "
+ std::to_string(maxNumberofMemChannels) + ".").c_str());
throw;
}
}
else if (name == "ControllerCoreDisableRefresh")
@@ -171,7 +169,6 @@ void Configuration::setParameter(std::string name, std::string value)
else if(name == "NumberOfDevicesOnDIMM")
if (string2int(value) < 1) {
SC_REPORT_FATAL("Configuration", ("Invalid value for parameter " + name + ". This parameter must be at least one.").c_str());
throw;
} else
NumberOfDevicesOnDIMM = string2int(value);
else if(name == "CheckTLM2Protocol")
@@ -187,7 +184,6 @@ void Configuration::setParameter(std::string name, std::string value)
else if (name == "TemperatureScale") {
if (value != "Celsius" && value != "Fahrenheit" && value != "Kelvin") {
SC_REPORT_FATAL("Configuration", ("Invalid value for parameter " + name + ".").c_str());
throw;
}
temperatureSim.TemperatureScale = value;
}
@@ -216,7 +212,6 @@ void Configuration::setParameter(std::string name, std::string value)
else
{
SC_REPORT_FATAL("Configuration", ("Parameter " + name + " not defined in Configuration").c_str());
throw;
}
}

View File

@@ -82,7 +82,6 @@ struct TemperatureSimConfig {
std::string errormsg = "Invalid Power Info File " + powerInfoFile;
printDebugMessage(errormsg);
SC_REPORT_FATAL("Temperature Sim Config", errormsg.c_str());
throw;
}
for (tinyxml2::XMLElement *e = powInfoElem->FirstChildElement(); e != NULL; e = e->NextSiblingElement()) {