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

Public Member Functions

def __init__
 

Data Fields

 smtp_code
 
 smtp_error
 
 args
 

Detailed Description

Base class for all exceptions that include an SMTP error code.

These exceptions are generated in some instances when the SMTP
server returns an error code.  The error code is stored in the
`smtp_code' attribute of the error, and the `smtp_error' attribute
is set to the error message.

Definition at line 71 of file smtplib.py.

Constructor & Destructor Documentation

def __init__ (   self,
  code,
  msg 
)

Definition at line 80 of file smtplib.py.

80 
81  def __init__(self, code, msg):
82  self.smtp_code = code
83  self.smtp_error = msg
84  self.args = (code, msg)

Field Documentation

args

Definition at line 83 of file smtplib.py.

smtp_code

Definition at line 81 of file smtplib.py.

smtp_error

Definition at line 82 of file smtplib.py.


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