ó
č?F[c           @   sö   d  Z  d d l m Z d e f d     YZ d e f d     YZ d e f d     YZ d	 e f d
     YZ d e f d     YZ d e f d     YZ d e f d     YZ	 d e f d     YZ
 d e f d     YZ d e f d     YZ d S(   s9   
Various exceptions that are specific to the SES module.
i˙˙˙˙(   t   BotoServerErrort   SESErrorc           B   s   e  Z d  Z RS(   ső   
    Sub-class all SES-related errors from here. Don't raise this error
    directly from anywhere. The only thing this gets us is the ability to
    catch SESErrors separately from the more generic, top-level
    BotoServerError exception.
    (   t   __name__t
   __module__t   __doc__(    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR      s   t   SESAddressNotVerifiedErrorc           B   s   e  Z d  Z RS(   sM   
    Raised when a "Reply-To" address has not been validated in SES yet.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR      s   t   SESIdentityNotVerifiedErrorc           B   s   e  Z d  Z RS(   sW   
    Raised when an identity (domain or address) has not been verified in SES yet.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR      s   t   SESDomainNotConfirmedErrorc           B   s   e  Z d  Z RS(   s   
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR      s   t   SESAddressBlacklistedErrorc           B   s   e  Z d  Z RS(   s*  
    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.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR   %   s   t   SESDailyQuotaExceededErrorc           B   s   e  Z d  Z RS(   sj   
    Your account's daily (rolling 24 hour total) allotment of outbound emails
    has been exceeded.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR	   /   s   t   SESMaxSendingRateExceededErrorc           B   s   e  Z d  Z RS(   sA   
    Your account's requests/second limit has been exceeded.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR
   7   s   t   SESDomainEndsWithDotErrorc           B   s   e  Z d  Z RS(   sC   
    Recipient's email address' domain ends with a period/dot.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR   >   s   t   SESLocalAddressCharacterErrorc           B   s   e  Z d  Z RS(   sA   
    An address contained a control or whitespace character.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR   E   s   t   SESIllegalAddressErrorc           B   s   e  Z d  Z RS(   s8   
    Raised when an illegal address is encountered.
    (   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyR   L   s   N(   R   t   boto.exceptionR    R   R   R   R   R   R	   R
   R   R   R   (    (    (    s2   lib/python2.7/site-packages/boto/ses/exceptions.pyt   <module>   s   

