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
6
namespace
cosmos {
7
9
13
class
COSMOS_API
UsageError
:
14
public
CosmosError
{
15
public
:
// functions
16
17
explicit
UsageError
(
const
std::string_view msg) :
18
CosmosError
{
"UsageError"
} {
19
m_msg = msg;
20
}
21
22
COSMOS_ERROR_IMPL
;
23
};
24
25
}
// end ns
cosmos::CosmosError
Base class for libcosmos exceptions.
Definition
CosmosError.hxx:75
cosmos::UsageError
Exception type for logical usage errors within the application.
Definition
UsageError.hxx:14
COSMOS_ERROR_IMPL
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition
macros.hxx:30
include
error
UsageError.hxx
Generated by
1.12.0