Skip to content
Snippets Groups Projects

F file read error

Merged Henrik tom Wörden requested to merge f-file-read-error into dev
8 files
+ 13
19
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -103,10 +103,10 @@ public:
/**
* @brief The connection isn't known to the ConnectionManager under this name.
*/
class UnknownConnectionError : public Exception {
class ConnectionConfigurationError : public Exception {
public:
explicit UnknownConnectionError(const std::string &what_arg)
: Exception(StatusCode::UNKNOWN_CONNECTION_ERROR, what_arg) {}
explicit ConnectionConfigurationError(const std::string &what_arg)
: Exception(StatusCode::CONNECTION_CONFIGURATION_ERROR, what_arg) {}
};
} // namespace caosdb::exceptions
Loading