Searched refs:i_exception (Results 1 – 1 of 1) sorted by relevance
81 const std::exception& i_exception) in getExceptionData() argument85 {"ErrorMsg", i_exception.what()}}; in getExceptionData()89 if (typeid(i_exception) == typeid(DataException)) in getExceptionData()92 dynamic_cast<const DataException&>(i_exception); in getExceptionData()95 std::string("Data Exception. Reason: ") + i_exception.what(); in getExceptionData()97 else if (typeid(i_exception) == typeid(EccException)) in getExceptionData()100 dynamic_cast<const EccException&>(i_exception); in getExceptionData()103 std::string("Ecc Exception. Reason: ") + i_exception.what(); in getExceptionData()105 else if (typeid(i_exception) == typeid(JsonException)) in getExceptionData()108 dynamic_cast<const JsonException&>(i_exception); in getExceptionData()[all …]