00001 # 00002 # License: BSD 00003 # https://raw.github.com/robotics-in-concert/rocon_tools/license/LICENSE 00004 # 00005 ############################################################################## 00006 # Exceptions 00007 ############################################################################## 00008 00009 00010 class ServicePairException(Exception): 00011 pass 00012 00013 00014 class ServicePairIOException(Exception): 00015 pass 00016 00017 00018 class NotFoundException(IOError): 00019 """ 00020 Raised when a requested entity cannot be found, or didn't return the correct result. 00021 """ 00022 pass