mirror of
https://github.com/lowobservable/coax.git
synced 2026-01-24 19:51:24 +00:00
20 lines
399 B
Python
20 lines
399 B
Python
"""
|
|
coax.exceptions
|
|
~~~~~~~~~~~~~~~
|
|
"""
|
|
|
|
class InterfaceError(Exception):
|
|
"""An interface error occurred."""
|
|
|
|
class ReceiveError(Exception):
|
|
"""A receive error occurred."""
|
|
|
|
class InterfaceTimeout(Exception):
|
|
"""The interface timed out."""
|
|
|
|
class ReceiveTimeout(Exception):
|
|
"""The receive operation timed out."""
|
|
|
|
class ProtocolError(Exception):
|
|
"""A protocol error occurred."""
|