(self, *args, sqlstate=None)
| 17 | (not Warning).""" |
| 18 | |
| 19 | def __init__(self, *args, sqlstate=None): |
| 20 | super().__init__(*args) |
| 21 | self.sqlstate = sqlstate |
| 22 | |
| 23 | |
| 24 | class InterfaceError(Error): |
nothing calls this directly
no outgoing calls
no test coverage detected