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

Public Member Functions

def __init__
 
def __str__
 

Data Fields

 msg
 
 opt
 

Static Public Attributes

string opt = ''
 
string msg = ''
 

Detailed Description

Definition at line 22 of file getopt.py.

Constructor & Destructor Documentation

def __init__ (   self,
  msg,
  opt 
)

Definition at line 25 of file getopt.py.

25 
26  def __init__(self, msg, opt):
27  self.msg = msg
28  self.opt = opt
29  Exception.__init__(self, msg, opt)

Member Function Documentation

def __str__ (   self)

Definition at line 30 of file getopt.py.

References GetoptError.msg.

30 
31  def __str__(self):
32  return self.msg

Field Documentation

string msg = ''
static

Definition at line 24 of file getopt.py.

msg

Definition at line 26 of file getopt.py.

string opt = ''
static

Definition at line 23 of file getopt.py.

opt

Definition at line 27 of file getopt.py.


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