Exceptions

Programmation orientée objet en Python

Alex Yarosh

Content Quality Analyst @ DataCamp

a = 1
a / 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    1/0
ZeroDivisionError: division by zero
a = [1,2,3]
a[5]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    a[5]
IndexError: list index out of range
a = 1
a + "Hello"
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
    a + "Hello"
TypeError: unsupported operand type(s) for +: /
'int' and 'str'
a = 1
a + b
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    a + b
NameError: name 'b' is not defined
Programmation orientée objet en Python

Gestion des exceptions

  • Empêcher le programme de se terminer lorsqu'une exception est levée
  • try - except - finally :
try:
  # Essayer d'exécuter du code

except ExceptionNameHere: # Exécuter ce code si ExceptionNameHere se produit
except AnotherExceptionHere: #<-- plusieurs blocs except # Exécuter ce code si AnotherExceptionHere se produit ...
finally: #<-- optionnel # Exécuter ce code quoi qu'il arrive
Programmation orientée objet en Python

Lever des exceptions

  • raise ExceptionNameHere('Message d'erreur ici')
def make_list_of_ones(length):
    if length <= 0:
       raise ValueError("Invalid length!")  # <--- Arrête le programme et lève une erreur
    return [1]*length   
make_list_of_ones(-1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    make_list_of_ones(-1)
  File "<stdin>", line 3, in make_list_of_ones
    raise ValueError("Invalid length!")
ValueError: Invalid length!
Programmation orientée objet en Python

Les exceptions sont des classes

  • Les exceptions standard héritent de BaseException ou Exception
    BaseException
    +-- Exception
        +-- ArithmeticError                     # <--- 
        |    +-- FloatingPointError
        |    +-- OverflowError
        |    +-- ZeroDivisionError              # <---
        +-- TypeError
        +-- ValueError
        |    +-- UnicodeError
        |         +-- UnicodeDecodeError
        |         +-- UnicodeEncodeError
        |         +-- UnicodeTranslateError
        +-- RuntimeError
       ...
    +-- SystemExit
    ...
    
1 https://docs.python.org/3/library/exceptions.html
Programmation orientée objet en Python

Exceptions personnalisées

  • Hériter de Exception ou d'une de ses sous-classes
  • Généralement une classe vide
class BalanceError(Exception): pass
class Customer:
   def __init__(self, name, balance):
    if balance < 0 :
       raise BalanceError("Balance has to be non-negative!")
    else:
       self.name, self.balance = name, balance

Programmation orientée objet en Python
cust = Customer("Larry Torres", -100)
Traceback (most recent call last):
  File "script.py", line 11, in <module>
    cust = Customer("Larry Torres", -100)
  File "script.py", line 6, in __init__
    raise BalanceError("Balance has to be non-negative!")
BalanceError: Balance has to be non-negative!
  • L'exception a interrompu le constructeur → objet non créé
cust
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
    cust
NameError: name 'cust' is not defined
Programmation orientée objet en Python

Capturer des exceptions personnalisées

try:
  cust = Customer("Larry Torres", -100)
except BalanceError:
  cust = Customer("Larry Torres", 0)
Programmation orientée objet en Python

Passons à la pratique !

Programmation orientée objet en Python

Preparing Video For Download...