(self, option, section, msg)
| 263 | """Base class for interpolation-related exceptions.""" |
| 264 | |
| 265 | def __init__(self, option, section, msg): |
| 266 | Error.__init__(self, msg) |
| 267 | self.option = option |
| 268 | self.section = section |
| 269 | self.args = (option, section, msg) |
| 270 | |
| 271 | |
| 272 | class InterpolationMissingOptionError(InterpolationError): |