how to raise two Value Errors with different messages in python code example
Example: try catch python
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")
try:
print("try to run this block")
except:
print("run this bock if there was error in earlier block")