python get error message try except code example
Example 1: python get exception message
try:
with open(filepath,'rb') as f:
con.storbinary('STOR '+ filepath, f)
logger.info('File successfully uploaded to '+ FTPADDR)
except Exception as e: # work on python 3.x
logger.error('Failed to upload to ftp: '+ str(e))
Example 2: only try python
try:
a=2
except:
pass
Example 3: python: raise error
class MyError(TypeError):
pass
raise MyError('An error happened')