00001 class AppException(Exception): 00002 """ 00003 Base exception class for App exceptions 00004 """ 00005 pass 00006 00007 class InvalidAppException(AppException): 00008 """ 00009 App specification is invalid. 00010 """ 00011 pass 00012 00013 class NotFoundException(AppException): 00014 """ 00015 Resource is not installed. 00016 """ 00017 pass 00018 00019 class LaunchException(AppException): 00020 """ 00021 Exception thrown related to launching an App 00022 """ 00023 pass 00024 00025 class InternalAppException(Exception): 00026 """ 00027 Base exception class for App exceptions 00028 """ 00029 pass