Skip to content
Snippets Groups Projects

F file read error

Merged Henrik tom Wörden requested to merge f-file-read-error into dev
Files
6
@@ -101,12 +101,12 @@ public:
};
/**
* @brief The connection isn't known to the ConnectionManager under this name.
* @brief Exception for errors during the configuration of the connection.
*/
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