250
254
This is the base class for all errors that ConfigObj raises.
251
255
It is a subclass of SyntaxError.
253
def __init__(self, message='', line_number=None, line=''):
257
def __init__(self, msg='', line_number=None, line=''):
255
259
self.line_number = line_number
260
264
class NestingError(ConfigObjError):