Searched refs:ConfigFileParserError (Results 1 – 10 of 10) sorted by relevance
/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | config_file_parser_error.hpp | 31 class ConfigFileParserError : public std::exception class 35 ConfigFileParserError() = delete; 36 ConfigFileParserError(const ConfigFileParserError&) = default; 37 ConfigFileParserError(ConfigFileParserError&&) = default; 38 ConfigFileParserError& operator=(const ConfigFileParserError&) = default; 39 ConfigFileParserError& operator=(ConfigFileParserError&&) = default; 40 virtual ~ConfigFileParserError() = default; 48 explicit ConfigFileParserError(const std::filesystem::path& pathName, in ConfigFileParserError() function in phosphor::power::regulators::ConfigFileParserError
|
H A D | error_logging_utils.cpp | 61 catch (const ConfigFileParserError& e) in logError() 154 catch (const ConfigFileParserError& e) in getExceptionToLog()
|
H A D | config_file_parser.cpp | 48 throw ConfigFileParserError{pathName, e.what()}; in parse()
|
/openbmc/phosphor-power/phosphor-power-sequencer/src/ |
H A D | config_file_parser_error.hpp | 30 class ConfigFileParserError : public std::exception class 34 ConfigFileParserError() = delete; 35 ConfigFileParserError(const ConfigFileParserError&) = default; 36 ConfigFileParserError(ConfigFileParserError&&) = default; 37 ConfigFileParserError& operator=(const ConfigFileParserError&) = default; 38 ConfigFileParserError& operator=(ConfigFileParserError&&) = default; 39 virtual ~ConfigFileParserError() = default; 47 explicit ConfigFileParserError(const std::filesystem::path& pathName, in ConfigFileParserError() function in phosphor::power::sequencer::ConfigFileParserError
|
H A D | config_file_parser.cpp | 84 throw ConfigFileParserError{pathName, e.what()}; in parse()
|
/openbmc/phosphor-power/phosphor-regulators/test/ |
H A D | config_file_parser_error_tests.cpp | 27 ConfigFileParserError error{pathName, "Required property missing"}; in TEST() 37 ConfigFileParserError error{pathName, "Required property missing"}; in TEST() 44 ConfigFileParserError error{pathName, "Required property missing"}; in TEST()
|
H A D | error_logging_utils_tests.cpp | 139 std::throw_with_nested(ConfigFileParserError{ in TEST() 168 throw ConfigFileParserError{ in TEST() 454 std::throw_with_nested(ConfigFileParserError{ in TEST() 488 std::throw_with_nested(ConfigFileParserError{ in TEST() 537 throw ConfigFileParserError{ in TEST()
|
H A D | config_file_parser_tests.cpp | 147 catch (const ConfigFileParserError& e) in TEST() 172 catch (const ConfigFileParserError& e) in TEST() 189 catch (const ConfigFileParserError& e) in TEST() 206 catch (const ConfigFileParserError& e) in TEST()
|
/openbmc/phosphor-power/phosphor-power-sequencer/test/ |
H A D | config_file_parser_error_tests.cpp | 28 ConfigFileParserError error{pathName, "Required property missing"}; in TEST() 40 ConfigFileParserError error{pathName, "Required property missing"}; in TEST() 48 ConfigFileParserError error{pathName, "Required property missing"}; in TEST()
|
H A D | config_file_parser_tests.cpp | 279 EXPECT_THROW(parse(pathName), ConfigFileParserError); in TEST() 299 EXPECT_THROW(parse(pathName), ConfigFileParserError); in TEST() 310 EXPECT_THROW(parse(pathName), ConfigFileParserError); in TEST() 321 EXPECT_THROW(parse(pathName), ConfigFileParserError); in TEST()
|