def exception_handler(func): def wrapper(*args, **kwargs): # Renaming the wrapper name to the function name: wrapper.__name__ = func.__name__ return wrapper