9 lines
182 B
Python
9 lines
182 B
Python
|
"""Exception classes"""
|
||
|
|
||
|
class ReverseProxyException(Exception):
|
||
|
"""Base for revproxy exception"""
|
||
|
|
||
|
|
||
|
class InvalidUpstream(ReverseProxyException):
|
||
|
"""Invalid upstream set"""
|