As there is `retry_if_exception_type`, would it be possible to have `retry_if_exception_match`? It would replace : ```python retry_if_exception(lambda e: re.match(pattern, str(e))) ``` by: ```python retry_if_exception_match(pattern) ```