9 lines
236 B
Python
9 lines
236 B
Python
class ImmediateHttpResponse(Exception):
|
|
"""
|
|
This exception is used to interrupt the flow of processing to immediately
|
|
return a custom HttpResponse.
|
|
"""
|
|
|
|
def __init__(self, response):
|
|
self.response = response
|