7 lines
131 B
Python
7 lines
131 B
Python
|
|
class SOCKSError(Exception):
|
||
|
|
"""Generic exception for when something goes wrong"""
|
||
|
|
|
||
|
|
|
||
|
|
class ProtocolError(SOCKSError):
|
||
|
|
pass
|