(self, broad, string, message)
| 5949 | raise exact[string](message) |
| 5950 | |
| 5951 | def throw_broadly_matched_exception(self, broad, string, message): |
| 5952 | broadKey = self.find_broadly_matched_key(broad, string) |
| 5953 | if broadKey is not None: |
| 5954 | raise broad[broadKey](message) |
| 5955 | |
| 5956 | def find_broadly_matched_key(self, broad, string): |
| 5957 | # a helper for matching error strings exactly vs broadly |
no test coverage detected