(self, msg)
| 213 | Exception.__init__(self, msg) |
| 214 | |
| 215 | def with_msg(self, msg): |
| 216 | return type(self)( |
| 217 | msg, |
| 218 | detail=self.detail, |
| 219 | hint=self.hint, |
| 220 | ).with_traceback( |
| 221 | self.__traceback__ |
| 222 | ) |
| 223 | |
| 224 | |
| 225 | class ClientConfigurationError(InterfaceError, ValueError): |
nothing calls this directly
no outgoing calls
no test coverage detected