Raised when no section matches a requested option.
| 187 | |
| 188 | |
| 189 | class NoSectionError(Error): |
| 190 | """Raised when no section matches a requested option.""" |
| 191 | |
| 192 | def __init__(self, section): |
| 193 | Error.__init__(self, 'No section: %r' % (section,)) |
| 194 | self.section = section |
| 195 | self.args = (section, ) |
| 196 | |
| 197 | |
| 198 | class DuplicateSectionError(Error): |
no outgoing calls
no test coverage detected
searching dependent graphs…