Home
last modified time | relevance | path

Searched refs:EccException (Results 1 – 5 of 5) sorted by relevance

/openbmc/openpower-vpd-parser/vpd-manager/include/
H A Dexceptions.hpp57 class EccException : public Exception class
61 EccException() = delete;
62 EccException(const EccException&) = delete;
63 EccException(EccException&&) = delete;
64 EccException& operator=(const EccException&) = delete;
67 ~EccException() = default;
73 explicit EccException(const std::string& msg) : Exception(msg) {} in EccException() function in vpd::EccException
/openbmc/openpower-vpd-parser/vpd-manager/src/
H A Dipz_parser.cpp156 throw(EccException("Invalid ECC length or offset.")); in recordEccCheck()
201 throw(EccException("ERROR: VHDR ECC check Failed")); in checkHeader()
227 throw(EccException("ERROR: VTOC ECC check Failed")); in readTOC()
273 throw(EccException("ERROR: ECC check failed")); in readPT()
616 throw(EccException( in updateRecordECC()
H A Dparser.cpp358 if (typeid(l_exception) == typeid(EccException)) in updateVpdKeywordOnHardware()
H A Dworker.cpp901 else if (typeid(l_ex) == typeid(EccException)) in parseVpdFile()
903 throw EccException(l_exMsg); in parseVpdFile()
1056 (typeid(ex) == typeid(EccException)) in parseAndPublishVPD()
/openbmc/openpower-vpd-parser/vpd-manager/include/utility/
H A Devent_logger_utility.hpp97 else if (typeid(i_exception) == typeid(EccException)) in getExceptionData()
99 const EccException& l_ex = in getExceptionData()
100 dynamic_cast<const EccException&>(i_exception); in getExceptionData()