My favorites | Sign in
Project Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Superclass of all exceptions thrown
class IMException(Exception):
pass

# Exception when Network is Unreachable.
class IMNetworkError(IMException):
pass

# Exception when the Transport returns errors,
# eg. Illegal Checksums, Error Codes.
class IMTransportError(IMException):
pass

# Exceptions when attempting to Connect
class IMConnectError(IMException):
pass

# Exceptions when disconnecting
class IMDisconnectException(IMException):
pass

class IMNoSuchStatus(IMException):
pass

class IMNoSuchUser(IMException):
pass
Show details Hide details

Change log

r18 by acnt2 on Apr 17, 2005   Diff
ICQ Message Bot
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 552 bytes, 26 lines
Powered by Google Project Hosting