We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ecfbea commit 3d89b8cCopy full SHA for 3d89b8c
src/utils/Exceptions.cpp
@@ -90,12 +90,4 @@ namespace CLI {
90
return configFile;
91
}
92
93
- BootstrapError::BootstrapError(const std::string& error)
94
- : CLI::Error("BootstrapError", error, CLI::ExitCodes::RequiredError)
95
- , error(error) {
96
- }
97
-
98
- BootstrapError::~BootstrapError() {
99
100
101
} // namespace CLI
src/utils/Exceptions.h
@@ -104,15 +104,6 @@ namespace CLI {
104
std::string configFile;
105
};
106
107
- class BootstrapError : public CLI::Error {
108
- public:
109
- explicit BootstrapError(const std::string& error);
110
- ~BootstrapError() override;
111
112
- private:
113
- std::string error;
114
- };
115
116
117
118
#endif // CLI_EXCEPTIONS_H
0 commit comments