Diag-Client-Lib
|
Definition of Dcm Client Error domain. More...
#include <dm_error_domain.h>
Public Types | |
using | Errc = DmErrorErrc |
Type alias for the error code value enumeration. More... | |
![]() | |
using | IdType = std::uint64_t |
Type alias for a unique ErrorDomain identifier type. More... | |
using | CodeType = std::int32_t |
Type alias for a domain-specific error code value. More... | |
using | SupportDataType = std::uint8_t |
Type alias type for vendor-specific supplementary data. More... | |
Public Member Functions | |
DmErrorDomain () noexcept | |
Default constructor. More... | |
~DmErrorDomain () noexcept=default | |
Default destructor. More... | |
const char * | Name () const noexcept override |
Return the name of this error domain. More... | |
const char * | Message (CodeType error_code) noexcept override |
Return a textual representation of the given error code. More... | |
![]() | |
ErrorDomain (const ErrorDomain &)=delete | |
Copy construction shall be disabled. More... | |
ErrorDomain (ErrorDomain &&)=delete | |
Move construction shall be disabled. More... | |
ErrorDomain & | operator= (const ErrorDomain &)=delete |
Copy assignment shall be disabled. More... | |
ErrorDomain & | operator= (ErrorDomain &&)=delete |
Move assignment shall be disabled. More... | |
constexpr IdType | Id () const noexcept |
Return the unique domain identifier. More... | |
Private Attributes | |
const std::string | domain_name_ {"DcmClientErrorDomain"} |
Store the error domain name. More... | |
std::string | message_ |
Store the error message. More... | |
Additional Inherited Members | |
![]() | |
ErrorDomain (IdType id) noexcept | |
Construct a new instance with the given identifier. Identifiers are expected to be system-wide unique. More... | |
virtual | ~ErrorDomain () noexcept=default |
Destructor. More... | |
Definition of Dcm Client Error domain.
Definition at line 31 of file dm_error_domain.h.
Type alias for the error code value enumeration.
Definition at line 36 of file dm_error_domain.h.
|
explicitnoexcept |
Default constructor.
Definition at line 46 of file dm_error_domain.cpp.
|
defaultnoexcept |
Default destructor.
|
overridevirtualnoexcept |
Return a textual representation of the given error code.
[in] | error_code | The error code value |
Implements core_type::ErrorDomain.
Definition at line 50 of file dm_error_domain.cpp.
References diag::client::error_domain::anonymous_namespace{dm_error_domain.cpp}::ConvertErrorCodeToString().
|
overridevirtualnoexcept |
Return the name of this error domain.
Implements core_type::ErrorDomain.
Definition at line 48 of file dm_error_domain.cpp.
References domain_name_.
|
private |
|
private |
Store the error message.
Definition at line 71 of file dm_error_domain.h.