diff options
author | 2011-11-01 12:33:05 +0100 | |
---|---|---|
committer | 2011-11-01 12:33:05 +0100 | |
commit | 2506d0ed2e33955d9b46802ed735cd8547369bad (patch) | |
tree | ea02535e78ae2c59d9099850e5ab2d4b1d044f10 /github3/exceptions.py | |
parent | Testing post gist (diff) | |
parent | Decouple Handlers and Models (diff) | |
download | python-github3-2506d0ed2e33955d9b46802ed735cd8547369bad.tar.xz python-github3-2506d0ed2e33955d9b46802ed735cd8547369bad.zip |
Merge branch 'handlers' into develop
Conflicts:
github3/api.py
Diffstat (limited to 'github3/exceptions.py')
-rw-r--r-- | github3/exceptions.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/github3/exceptions.py b/github3/exceptions.py new file mode 100644 index 0000000..72da776 --- /dev/null +++ b/github3/exceptions.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python +# -*- encoding: utf-8 -*- +# +# author: David Medina + +class AnomUser(Exception): + """ Exception for AnomUser handler """ + pass |