Open
Description
Using PythonCall.jl, how do I best handle python exception patters such as the following python:
try:
database = client.create_database(DATABASE_NAME)
except exceptions.CosmosResourceExistsError:
database = client.get_database_client(DATABASE_NAME)