web-dev-qa-db-fra.com

Comment utiliser les attributs d'une exception en Python?

Existe-t-il un moyen d'utiliser les attributs/propriétés d'un objet Exception dans un bloc try-except en Python?

Par exemple en Java nous avons:

try {
    // Some code
} catch(Exception e) {
    // Here we can use some of the attributes of "e"
}

Quel équivalent dans Python me donnerait une référence à e?

28
Kozet

Utilisez l'instruction as. Vous pouvez en savoir plus à ce sujet dans Gestion des exceptions .

>>> try:
...     print(a)
... except NameError as e:
...     print(dir(e))  # print attributes of e
...
['__cause__', '__class__', '__context__', '__delattr__', '__dict__', '__doc__', '__eq__',
 '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__',
 '__lt__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__',
 '__setstate__', '__sizeof__', '__str__', '__subclasshook__', '__traceback__', 'args',
 'with_traceback']
51
Ashwini Chaudhary

Bien sûr, il y a:

try:
    # some code
except Exception as e:
    # Here we can use some the attribute of "e"
9
phihag

Voici un exemple tiré de docs :

class MyError(Exception):
   def __init__(self, value):
       self.value = value

   def __str__(self):
      return repr(self.value)

try:
     raise MyError(2*2)
except MyError as e:
     print 'My exception occurred, value:', e.value
8
WeaklyTyped