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