From 43ac482677aab696bdf196c2ff696c82f1ce5e84 Mon Sep 17 00:00:00 2001 From: "Thanh C. Tran" Date: Tue, 22 Nov 2016 15:07:47 +0100 Subject: [PATCH] Modified report message --- .../src/controller/core/configuration/ConfigurationLoader.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/DRAMSys/simulator/src/controller/core/configuration/ConfigurationLoader.cpp b/DRAMSys/simulator/src/controller/core/configuration/ConfigurationLoader.cpp index c7653d30..f948c8db 100644 --- a/DRAMSys/simulator/src/controller/core/configuration/ConfigurationLoader.cpp +++ b/DRAMSys/simulator/src/controller/core/configuration/ConfigurationLoader.cpp @@ -158,8 +158,7 @@ void ConfigurationLoader::loadMCConfig(Configuration& config, XMLElement* mcconf // check compatible between Store Mode and PowerDown Mode if (config.StoreMode == StorageMode::ErrorModel && config.PowerDownMode != EPowerDownMode::NoPowerDown) { - SC_REPORT_FATAL("ConfigurationLoader", "Error model does not work when power down modes are activated"); - throw; + SC_REPORT_FATAL("ConfigurationLoader", "Does not yet support error model and power down modes activated at the same time"); } }