exceptions.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # License: BSD
4 # https://raw.github.com/robotics-in-concert/rocon_multimaster/license/LICENSE
5 #
6 
7 '''
8  Core exceptions raised by the gateway.
9 '''
10 ##############################################################################
11 # Exceptions
12 ##############################################################################
13 
14 
15 class GatewayError(Exception):
16  pass
17 
18 
19 # Raised when information for a specific gateway id is requested, but that
20 # gateway is not connected to the hub
21 class GatewayUnavailableError(Exception):
22  pass
23 
24 
25 # Raised when a connection type of the kind gateway_msgs.ConnectionType is
26 # invalid
28  pass
29 
30 
31 # Raised whenever any of the samples falls over in runtime
32 class GatewaySampleRuntimeError(Exception):
33  pass


rocon_gateway
Author(s): Daniel Stonier , Jihoon Lee , Piyush Khandelwal
autogenerated on Mon Jun 10 2019 14:40:10