A requested option was not found.
| 249 | |
| 250 | |
| 251 | class NoOptionError(Error): |
| 252 | """A requested option was not found.""" |
| 253 | |
| 254 | def __init__(self, option, section): |
| 255 | Error.__init__(self, "No option %r in section: %r" % |
| 256 | (option, section)) |
| 257 | self.option = option |
| 258 | self.section = section |
| 259 | self.args = (option, section) |
| 260 | |
| 261 | |
| 262 | class InterpolationError(Error): |
no outgoing calls
no test coverage detected
searching dependent graphs…