LangChain - Chains and LCEL
What is wrong with this error handling code for a Langchain chain?
try:
output = chain.run()
except ValueError as e:
print('Value error:', e)
except:
print('Error:', e)