diff options
| author | Emile Anclin <emile.anclin@logilab.fr> | 2009-03-04 16:38:26 +0100 |
|---|---|---|
| committer | Emile Anclin <emile.anclin@logilab.fr> | 2009-03-04 16:38:26 +0100 |
| commit | c8a6fbc58a5f0b7f9db5eb0290f099ea1d4a38c6 (patch) | |
| tree | a8035f018cddee44b08a3fc73aef2c71499beae5 /_exceptions.py | |
| parent | cbe90eb90cec7de08e37bc0e79253fc70d2abbea (diff) | |
| download | astroid-git-c8a6fbc58a5f0b7f9db5eb0290f099ea1d4a38c6.tar.gz | |
licence, date, typos
--HG--
branch : _ast_compat
Diffstat (limited to '_exceptions.py')
| -rw-r--r-- | _exceptions.py | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/_exceptions.py b/_exceptions.py index 009f10ba..722b9bce 100644 --- a/_exceptions.py +++ b/_exceptions.py @@ -13,33 +13,31 @@ """this module contains exceptions used in the astng library :author: Sylvain Thenault -:copyright: 2003-2007 LOGILAB S.A. (Paris, FRANCE) +:copyright: 2003-2009 LOGILAB S.A. (Paris, FRANCE) :contact: http://www.logilab.fr/ -- mailto:python-projects@logilab.org -:copyright: 2003-2007 Sylvain Thenault +:copyright: 2003-2009 Sylvain Thenault :contact: mailto:thenault@gmail.com """ __doctype__ = "restructuredtext en" class ASTNGError(Exception): - """base exception class for all astng related exceptions - """ + """base exception class for all astng related exceptions""" class ASTNGBuildingException(ASTNGError): - """exception class when we are not able to build an astng representation""" + """exception class when we are unable to build an astng representation""" class ResolveError(ASTNGError): """base class of astng resolution/inference error""" class NotFoundError(ResolveError): - """raised when we are unabled to resolve a name""" + """raised when we are unable to resolve a name""" class InferenceError(ResolveError): - """raised when we are unabled to infer a node""" + """raised when we are unable to infer a node""" class UnresolvableName(InferenceError): - """raised when we are unabled to resolve a name""" - + """raised when we are unable to resolve a name""" class NoDefault(ASTNGError): """raised by function's `default_value` method when an argument has |
