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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « boto/ses/connection.py ('k') | boto/sns/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: boto/ses/exceptions.py
diff --git a/boto/ses/exceptions.py b/boto/ses/exceptions.py
new file mode 100644
index 0000000000000000000000000000000000000000..58825ed9688e48c2543fc7903c4640fe3f93720d
--- /dev/null
+++ b/boto/ses/exceptions.py
@@ -0,0 +1,35 @@
+"""
+Various exceptions that are specific to the SES module.
+"""
+from boto.exception import BotoServerError
+
+class SESAddressNotVerifiedError(BotoServerError):
+ """
+ Raised when a "Reply-To" address has not been validated in SES yet.
+ """
+ pass
+
+
+class SESAddressBlacklistedError(BotoServerError):
+ """
+ After you attempt to send mail to an address, and delivery repeatedly
+ fails, said address is blacklisted for at least 24 hours. The blacklisting
+ eventually expires, and you are able to attempt delivery again. If you
+ attempt to send mail to a blacklisted email, this is raised.
+ """
+ pass
+
+
+class SESDailyQuotaExceededError(BotoServerError):
+ """
+ Your account's daily (rolling 24 hour total) allotment of outbound emails
+ has been exceeded.
+ """
+ pass
+
+
+class SESMaxSendingRateExceededError(BotoServerError):
+ """
+ Your account's requests/second limit has been exceeded.
+ """
+ pass
« 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