Class GmailLoginFailure
source code
exceptions.Exception --+
|
GmailLoginFailure
Raised whenever the login process fails--could be wrong username/password,
or Gmail service error, for example.
Extract the error message like this:
try:
foobar
except GmailLoginFailure,e:
mesg = e.message# or
print e# uses the __str__
|
|
|
|
Inherited from exceptions.Exception :
__getitem__
|
- Overrides:
exceptions.Exception.__init__
|
__str__(self)
(Informal representation operator)
| source code
|
- Overrides:
exceptions.Exception.__str__
|