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

Public Member Functions

def __init__
 
- Public Member Functions inherited from ParsingError
def __init__
 
def append
 
- Public Member Functions inherited from Error
def __init__
 
def __repr__
 

Data Fields

 filename
 
 lineno
 
 line
 
- Data Fields inherited from ParsingError
 filename
 
 errors
 

Detailed Description

Definition at line 160 of file ConfigParser.py.

Constructor & Destructor Documentation

def __init__ (   self,
  filename,
  lineno,
  line 
)

Definition at line 161 of file ConfigParser.py.

162  def __init__(self, filename, lineno, line):
163  Error.__init__(
164  self,
165  'File contains no section headers.\nfile: %s, line: %d\n%s' %
166  (filename, lineno, line))
167  self.filename = filename
168  self.lineno = lineno
169  self.line = line
170 
171 

Field Documentation

filename

Definition at line 166 of file ConfigParser.py.

line

Definition at line 168 of file ConfigParser.py.

lineno

Definition at line 167 of file ConfigParser.py.


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