Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: boto/ses/exceptions.py

Issue 8669001: Pull in upstream boto from github at bcb719937de9ac2851e632d62b777352029a6d55 (Closed) Base URL: svn://svn.chromium.org/boto
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « boto/ses/connection.py ('k') | boto/sns/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 """
2 Various exceptions that are specific to the SES module.
3 """
4 from boto.exception import BotoServerError
5
6 class SESAddressNotVerifiedError(BotoServerError):
7 """
8 Raised when a "Reply-To" address has not been validated in SES yet.
9 """
10 pass
11
12
13 class SESAddressBlacklistedError(BotoServerError):
14 """
15 After you attempt to send mail to an address, and delivery repeatedly
16 fails, said address is blacklisted for at least 24 hours. The blacklisting
17 eventually expires, and you are able to attempt delivery again. If you
18 attempt to send mail to a blacklisted email, this is raised.
19 """
20 pass
21
22
23 class SESDailyQuotaExceededError(BotoServerError):
24 """
25 Your account's daily (rolling 24 hour total) allotment of outbound emails
26 has been exceeded.
27 """
28 pass
29
30
31 class SESMaxSendingRateExceededError(BotoServerError):
32 """
33 Your account's requests/second limit has been exceeded.
34 """
35 pass
OLDNEW
« no previous file with comments | « boto/ses/connection.py ('k') | boto/sns/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698