| 110 | |
| 111 | |
| 112 | class UnexpectedError(Exception): |
| 113 | def __init__(self, message, exc=None): |
| 114 | super(UnexpectedError, self).__init__(message) |
| 115 | self.formatted_traceback = traceback.format_exc() |
| 116 | self.exc = exc |
| 117 | |
| 118 | |
| 119 | def run_clang_format_diff_wrapper(args, file): |
no outgoing calls
no test coverage detected