(self, exact, string, message)
| 5943 | return self.handle_option_and_params(params, methodName, 'marginMode', defaultValue) |
| 5944 | |
| 5945 | def throw_exactly_matched_exception(self, exact, string, message): |
| 5946 | if string is None: |
| 5947 | return |
| 5948 | if string in exact: |
| 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) |
no outgoing calls
no test coverage detected