Improve exception messages
[archive/platform/core/system/libConfig.git] / src / config / exception.hpp
index 6489c73..5de62a5 100644 (file)
@@ -36,7 +36,7 @@ namespace config {
  */
 struct ConfigException: public std::runtime_error {
 
-    ConfigException(const std::string& error = "") : std::runtime_error(error) {}
+    ConfigException(const std::string& error) : std::runtime_error(error) {}
 };
 
 } // namespace config