Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #109446

Re: Catch exception with message?

From Random832 <random832@fastmail.com>
Newsgroups comp.lang.python
Subject Re: Catch exception with message?
Date 2016-06-03 20:42 -0400
Message-ID <mailman.140.1465000941.1839.python-list@python.org> (permalink)
References <CAJV9OM_eDYJHsq1J7N9mYQEyqRsUR1S7LOJWZ8+XGEJ_h3CHYw@mail.gmail.com> <1465000939.1726478.627518305.3BB72ED4@webmail.messagingengine.com>

Show all headers | View raw


On Fri, Jun 3, 2016, at 19:14, Piyush Verma wrote:
> Generally we catch exception using
> except Exception as e:
> 
> But sometimes, we see same type of exception is present with different
> message.Is there a way to capture same exception with message
> filtering? Please help me to do this.

The message is meant to be human-readable, and may change without
warning. Is there no other property on the exceptions you want to catch
that can be used to distinguish them? (errno, perhaps?) What's your
specific use case?

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Catch exception with message? Random832 <random832@fastmail.com> - 2016-06-03 20:42 -0400

csiph-web