]>
gitweb.pimeys.fr Git - bots/parrot.git/blob - errors.py
2 # -*- encoding: utf-8 -*-
4 """ Erreurs utilisables dans le code du bot """
6 class UnicodeBotError(Exception):
7 """Erreur levée si quelqu'un fait du caca avec son encodage."""
10 class CrashError(Exception):
11 """Pour pouvoir faire crasher Basile, parce que ça a l'air drôle."""
12 def __init__(self
, msg
=""):
13 Exception.__init
__(self
, msg
)