Package Things :: Module bugs :: Class Bugs
[frames] | no frames]

Class Bugs

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              Bugs

Private: Contains and controls error messages. ## How to raise: ## raise _Bugs("BAG_ERROR", key="A") ## raise _Bugs("FILE_ERROR", paf="thisfile")

Instance Methods
 
__init__(self, bugkey, **args)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
__str__(self)
str(x)

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Class Variables
  s = {'BAD_KEY_COMBO': u'Check your Thing, you have a bad combi...
Properties

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details

__init__(self, bugkey, **args)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

 

str(x)

Overrides: object.__str__
(inherited documentation)

Class Variable Details

s

Value:
{'BAD_KEY_COMBO': u'Check your Thing, you have a bad combination(%(tes\
t)s at character %(pos)i).',
 'BAD_KEY_STRING': u'Check your Thing, a key cannot begin with '-' or \
'='.',
 'BAD_PROPS': u'I can't find those props in myself.',
 'BAD_SVG_FILE': u'''I cannot make any sense of: %(paf)s.
There may be exotic and somewhat fruity layer names...
Please see help(BagOfStuff.add)''',
...