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

Public Member Functions

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

Data Fields

 reference
 
 option
 
 section
 

Detailed Description

Definition at line 126 of file ConfigParser.py.

Constructor & Destructor Documentation

def __init__ (   self,
  reference,
  option,
  section,
  rawval 
)

Definition at line 127 of file ConfigParser.py.

128  def __init__(self, reference, option, section, rawval):
129  Error.__init__(self,
130  "Bad value substitution:\n"
131  "\tsection: [%s]\n"
132  "\toption : %s\n"
133  "\tkey : %s\n"
134  "\trawval : %s\n"
135  % (section, option, reference, rawval))
136  self.reference = reference
137  self.option = option
138  self.section = section

Field Documentation

option

Definition at line 136 of file ConfigParser.py.

reference

Definition at line 135 of file ConfigParser.py.

section

Definition at line 137 of file ConfigParser.py.


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