comparison src/core/exceptions.py @ 486:0d9908ac775e

core: entity cache misc data management + error moved to core.exceptions in memory
author Goffi <goffi@goffi.org>
date Fri, 17 Aug 2012 03:07:22 +0200
parents 2a072735e459
children e9634d2e7b38
comparison
equal deleted inserted replaced
485:ee95ff721b68 486:0d9908ac775e
19 along with this program. If not, see <http://www.gnu.org/licenses/>. 19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 """ 20 """
21 21
22 class ProfileUnknownError(Exception): 22 class ProfileUnknownError(Exception):
23 pass 23 pass
24
25 class ProfileNotInCacheError(Exception):
26 pass
27
28 class ConnectedProfileError(Exception):
29 pass
30
31 class UnknownEntityError(Exception):
32 pass