libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
UsageError.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/error/CosmosError.hxx>
5
6namespace cosmos {
7
9
13class COSMOS_API UsageError :
14 public CosmosError {
15public: // functions
16
17 explicit UsageError(const std::string_view msg) :
18 CosmosError{"UsageError"} {
19 m_msg = msg;
20 }
21
23};
24
25} // end ns
Base class for libcosmos exceptions.
Exception type for logical usage errors within the application.
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition macros.hxx:30