Merge pull request #26873 from kssenii/bridge-fix

One more library bridge fix
This commit is contained in:
Kseniia Sumarokova 2021-07-28 11:36:38 +03:00 committed by GitHub
commit 9a20b9f0c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ SharedLibraryHandlerPtr SharedLibraryHandlerFactory::get(const std::string & dic
if (library_handler != library_handlers.end())
return library_handler->second;
return nullptr;
throw Exception(ErrorCodes::BAD_ARGUMENTS, "Not found dictionary with id: {}", dictionary_id);
}