libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileError.hxx
1#pragma once
2
3// C++
4#include <string>
5
6// cosmos
7#include <cosmos/error/ApiError.hxx>
8#include <cosmos/SysString.hxx>
9
10namespace cosmos {
11
13
21class COSMOS_API FileError :
22 public ApiError {
23public: // functions
24
25 FileError(const SysString path, const std::string_view operation);
26
28
29protected: // functions
30
31 void generateMsg() const override;
32
33protected: // data
34
35 std::string m_path;
36 std::string m_operation;
37};
38
39} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
Specialized exception type used for file related APIs.
Definition FileError.hxx:22
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition macros.hxx:30
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33