19namespace auto_apms_util::exceptions
25class ExceptionBase :
public std::runtime_error
28 explicit inline ExceptionBase(
const std::string & msg) : std::runtime_error(msg) {}
33 using ExceptionBase::ExceptionBase;
36struct ResourceIdentityFormatError :
public ExceptionBase
38 using ExceptionBase::ExceptionBase;
41struct YAMLFormatError :
public ExceptionBase
43 using ExceptionBase::ExceptionBase;
48 using ExceptionBase::ExceptionBase;
Base class for all exceptions of AutoAPMS.