exceptions.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 #
00003 # License: BSD
00004 #   https://raw.github.com/robotics-in-concert/rocon_devices/license/LICENSE
00005 #
00006 #################################################################################
00007 
00008 ##############################################################################
00009 # Exceptions
00010 ##############################################################################
00011 
00012 
00013 class PhueException(Exception):
00014     def __init__(self, error_type, message):
00015         self.error_type = error_type
00016         self.message = message
00017 
00018 
00019 class PhueRegistrationException(PhueException):
00020     pass
00021 


rocon_python_hue
Author(s):
autogenerated on Thu Jun 6 2019 17:58:50