This commit is contained in:
Thomas 2022-01-09 18:47:35 +01:00
parent e9b2a64e43
commit aad76d162b
No known key found for this signature in database
GPG Key ID: E538821A6CDFDAD7

View File

@ -212,7 +212,6 @@ int ConfigBuilder::getInt(const configKey& key) const {
try{ try{
return stoi(getString(key)); return stoi(getString(key));
}catch(invalid_argument& e){ }catch(invalid_argument& e){
cerr << e.what() << endl;
throw config_error("Invalid int data for key "+key+" : |"+getString(key)+"|"); throw config_error("Invalid int data for key "+key+" : |"+getString(key)+"|");
} }
} }