Skip to content

Commit 3d89b8c

Browse files
Revert BootstrapError
1 parent 8ecfbea commit 3d89b8c

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

src/utils/Exceptions.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,4 @@ namespace CLI {
9090
return configFile;
9191
}
9292

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-
10193
} // namespace CLI

src/utils/Exceptions.h

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,6 @@ namespace CLI {
104104
std::string configFile;
105105
};
106106

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-
116107
} // namespace CLI
117108

118109
#endif // CLI_EXCEPTIONS_H

0 commit comments

Comments
 (0)