try: # Your code here except: raise Exception("ERROR: Some specific Error Message")
try: some_code_that_may_raise_our_value_error() except ValueError as err: print(err.args)