All of my work from commits: dd4a194, 692644a, 4a60203, 5de46bc, 152042d, 64a2d4e...
[philo.git] / contrib / gilbert / exceptions.py
1 class AlreadyRegistered(Exception):
2         pass
3
4
5 class NotRegistered(Exception):
6         pass
7
8
9 class ExtException(Exception):
10         """ Base class for all Ext.Direct-related exceptions. """
11         pass
12
13
14 class InvalidExtMethod(ExtException):
15         """ Indicate that a function cannot be an Ext.Direct method. """
16         pass
17
18
19 class NotExtAction(ExtException):
20         """ Indicate that an object is not an Ext.Direct action. """
21         pass
22
23
24 class NotExtMethod(ExtException):
25         """ Indicate that a function is not an Ext.Direct method. """
26         pass