comparison src/core/exceptions.py @ 627:d207c2186519

core, bridge, jp, quick_frontend: SàT stop more gracefully if bridge can't be initialised: - new BridgeInitError and BridgeExceptionNoService are in core.exceptions - D-Bus NotSupported is catched in bridge, and launch a BridgeInitError - BridgeInitError stop SàT core, jp, and quick_frontends with an explanation message. fix bug 27
author Goffi <goffi@goffi.org>
date Fri, 21 Jun 2013 02:00:37 +0200
parents 84a6e83157c2
children 694f118d0cd5
comparison
equal deleted inserted replaced
626:190ccc6dc36c 627:d207c2186519
42 pass 42 pass
43 43
44 44
45 class DataError(Exception): 45 class DataError(Exception):
46 pass 46 pass
47
48 class BridgeInitError(Exception):
49 pass
50
51 class BridgeExceptionNoService(Exception):
52 pass