TypeError: les exceptions doivent dériver de BasEException

#When using raise, it must be given an Exeption class or one that inherits from it.
#e.g.ValueError, IndexError, KeyError
raise ValueError("I'm a fancy error message")
Tired Turtler