Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
SMTPSenderRefused Class Reference
Inheritance diagram for SMTPSenderRefused:
SMTPResponseException SMTPException

Public Member Functions

def __init__
 
- Public Member Functions inherited from SMTPResponseException
def __init__
 

Data Fields

 smtp_code
 
 smtp_error
 
 sender
 
 args
 
- Data Fields inherited from SMTPResponseException
 smtp_code
 
 smtp_error
 
 args
 

Detailed Description

Sender address refused.

In addition to the attributes set by on all SMTPResponseException
exceptions, this sets `sender' to the string that the SMTP refused.

Definition at line 85 of file smtplib.py.

Constructor & Destructor Documentation

def __init__ (   self,
  code,
  msg,
  sender 
)

Definition at line 92 of file smtplib.py.

92 
93  def __init__(self, code, msg, sender):
94  self.smtp_code = code
95  self.smtp_error = msg
96  self.sender = sender
97  self.args = (code, msg, sender)

Field Documentation

args

Definition at line 96 of file smtplib.py.

sender

Definition at line 95 of file smtplib.py.

smtp_code

Definition at line 93 of file smtplib.py.

smtp_error

Definition at line 94 of file smtplib.py.


The documentation for this class was generated from the following file: