All Questions
Tagged with exception python-2.x
2 questions
2
votes
1
answer
241
views
Extended exception for network errors in Python
I need a custom exception for network errors that holds a related exception and more than one URL (the first one as the used service has its URL but it indirectly calls other URLs), so I wrote this:
<...
1
vote
1
answer
144
views
Python exception handling class - Getting as much details printed
I'm trying to write a Exception Handling class in Python so that I can re-use. If you have any ideas on how I can improve this to output more detailed information I would appreciate it:
...