2005-12-01 17:16:53 +00:00
|
|
|
## exceptions.py
|
|
|
|
##
|
2006-09-29 20:49:15 +00:00
|
|
|
## Copyright (C) 2005-2006 Yann Le Boulanger <asterix@lagaule.org>
|
2006-10-07 12:41:19 +00:00
|
|
|
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
|
2005-12-01 17:16:53 +00:00
|
|
|
##
|
|
|
|
## This program is free software; you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published
|
|
|
|
## by the Free Software Foundation; version 2 only.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
|
|
|
|
class PysqliteNotAvailable(Exception):
|
|
|
|
'''sqlite2 is not installed or python bindings are missing'''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
2005-12-27 21:03:02 +00:00
|
|
|
return _('pysqlite2 (aka python-pysqlite2) dependency is missing. Exiting...')
|
2005-12-01 17:16:53 +00:00
|
|
|
|
2007-07-09 16:01:19 +00:00
|
|
|
class PysqliteOperationalError(Exception):
|
|
|
|
'''sqlite2 raised pysqlite2.dbapi2.OperationalError'''
|
|
|
|
def __init__(self, text=''):
|
|
|
|
Exception.__init__(self)
|
|
|
|
self.text = text
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.text
|
|
|
|
|
2005-12-01 17:16:53 +00:00
|
|
|
class ServiceNotAvailable(Exception):
|
|
|
|
'''This exception is raised when we cannot use Gajim remotely'''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return _('Service not available: Gajim is not running, or remote_control is False')
|
|
|
|
|
|
|
|
class DbusNotSupported(Exception):
|
|
|
|
'''D-Bus is not installed or python bindings are missing'''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return _('D-Bus is not present on this machine or python module is missing')
|
|
|
|
|
|
|
|
class SessionBusNotPresent(Exception):
|
|
|
|
'''This exception indicates that there is no session daemon'''
|
|
|
|
def __init__(self):
|
|
|
|
Exception.__init__(self)
|
|
|
|
|
|
|
|
def __str__(self):
|
2006-03-19 21:21:16 +00:00
|
|
|
return _('Session bus is not available.\nTry reading http://trac.gajim.org/wiki/GajimDBus')
|
2006-10-07 12:41:19 +00:00
|
|
|
|
2007-07-12 06:25:05 +00:00
|
|
|
class NegotiationError(Exception):
|
|
|
|
'''A session negotiation failed'''
|
|
|
|
pass
|
|
|
|
|
|
|
|
class DecryptionError(Exception):
|
|
|
|
'''A message couldn't be decrypted into usable XML'''
|
|
|
|
pass
|
|
|
|
|
2007-09-29 20:51:01 +00:00
|
|
|
class Cancelled(Exception):
|
|
|
|
'''The user cancelled an operation'''
|
|
|
|
pass
|
|
|
|
|
2006-10-07 12:41:19 +00:00
|
|
|
class GajimGeneralException(Exception):
|
2007-07-12 06:25:05 +00:00
|
|
|
'''This exception is our general exception'''
|
2006-10-07 12:41:19 +00:00
|
|
|
def __init__(self, text=''):
|
|
|
|
Exception.__init__(self)
|
2006-10-08 02:33:34 +00:00
|
|
|
self.text = text
|
2006-10-07 12:41:19 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.text
|