Skip to content

Instantly share code, notes, and snippets.

Created January 5, 2013 10:09
Show Gist options
  • Save anonymous/4460834 to your computer and use it in GitHub Desktop.
Save anonymous/4460834 to your computer and use it in GitHub Desktop.
Exemple classe d'exception
class ErrDeg(Exception) :
def __init__(self,value) :
self.value = value
def __str__(self) :
return repr(self.value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment