Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

print type of exception python

try:
    someFunction()
except Exception as ex:
    template = "An exception of type {0} occurred. Arguments:
{1!r}"
    message = template.format(type(ex).__name__, ex.args)
    print (message)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #print #type #exception #python
ADD COMMENT
Topic
Name
1+4 =