Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
NNTPError Class Reference
Inheritance diagram for NNTPError:
NNTPDataError NNTPPermanentError NNTPProtocolError NNTPReplyError NNTPTemporaryError

Public Member Functions

def __init__
 

Data Fields

 response
 

Detailed Description

Base class for all nntplib exceptions

Definition at line 42 of file nntplib.py.

Constructor & Destructor Documentation

def __init__ (   self,
  args 
)

Definition at line 44 of file nntplib.py.

44 
45  def __init__(self, *args):
46  apply(Exception.__init__, (self,)+args)
47  try:
48  self.response = args[0]
49  except IndexError:
50  self.response = 'No response given'

Field Documentation

response

Definition at line 47 of file nntplib.py.


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