2008-04-05 23:22:12 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2007-02-10 14:52:59 +01:00
|
|
|
#
|
2008-04-05 23:22:12 +02:00
|
|
|
# Copyright (C) 2007, 2008 by Jan Dittberner.
|
2007-02-10 14:52:59 +01: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; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
|
|
# USA.
|
|
|
|
#
|
|
|
|
# Version: $Id$
|
|
|
|
"""This file defines the gnuviechadmin specific exception types."""
|
2007-07-02 11:14:47 +02:00
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-02 11:14:47 +02:00
|
|
|
class GnuviechadminError(Exception):
|
|
|
|
"""This is the base class for domain specific exceptions of
|
|
|
|
Gnuviechadmin."""
|
|
|
|
pass
|
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-02 11:14:47 +02:00
|
|
|
class MissingFieldsError(GnuviechadminError):
|
2007-02-10 14:52:59 +01:00
|
|
|
"""This exception should be raised when a required field of a data
|
2007-07-02 11:14:47 +02:00
|
|
|
class is missing."""
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-02-10 14:52:59 +01:00
|
|
|
def __init__(self, missingfields):
|
2008-06-07 23:25:35 +02:00
|
|
|
GnuviechadminError.__init__(self)
|
2007-02-10 14:52:59 +01:00
|
|
|
self.missing = missingfields
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "the fields %s are missing." % (repr(self.missing))
|
2007-02-11 21:09:07 +01:00
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-02 11:14:47 +02:00
|
|
|
class CreationFailedError(GnuviechadminError):
|
2007-02-11 21:09:07 +01:00
|
|
|
"""This exception should be raised if a business object could not
|
2007-07-02 11:14:47 +02:00
|
|
|
be created."""
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-02-11 21:09:07 +01:00
|
|
|
def __init__(self, classname, cause = None):
|
2008-06-07 23:25:35 +02:00
|
|
|
GnuviechadminError.__init__(self)
|
2007-02-11 21:09:07 +01:00
|
|
|
self.classname = classname
|
|
|
|
self.cause = cause
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
msg = "Creating an instance of class %s failed." % (self.classname)
|
|
|
|
if self.cause:
|
|
|
|
msg += " The reason is %s." % (str(self.cause))
|
|
|
|
return msg
|
2007-07-02 11:14:47 +02:00
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-02 11:14:47 +02:00
|
|
|
class DeleteFailedError(GnuviechadminError):
|
|
|
|
"""This exception should be raise if a business object coild not
|
|
|
|
be deleted."""
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-02 11:14:47 +02:00
|
|
|
def __init__(self, classname, cause = None):
|
2008-06-07 23:25:35 +02:00
|
|
|
GnuviechadminError.__init__(self)
|
2007-07-02 11:14:47 +02:00
|
|
|
self.classname = classname
|
|
|
|
self.cause = cause
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
msg = "Deleting an instance of class %s failed." % (self.classname)
|
|
|
|
if self.cause:
|
|
|
|
msg += " The reason is %s." % (str(self.cause))
|
|
|
|
return msg
|
2007-07-05 11:00:34 +02:00
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-05 11:00:34 +02:00
|
|
|
class ValidationFailedError(GnuviechadminError):
|
|
|
|
"""This exception should be raised if the validation of a business
|
|
|
|
object failed."""
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-05 11:00:34 +02:00
|
|
|
def __init__(self, instance, cause = None):
|
2008-06-07 23:25:35 +02:00
|
|
|
GnuviechadminError.__init__(self)
|
2007-07-05 11:00:34 +02:00
|
|
|
self.instance = instance
|
|
|
|
self.cause = cause
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
msg = "Validating %s failed." % (str(self.instance))
|
|
|
|
if self.cause:
|
|
|
|
msg += " The reason is %s." % (str(self.cause))
|
|
|
|
return msg
|
2007-07-09 08:46:36 +02:00
|
|
|
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-09 08:46:36 +02:00
|
|
|
class CannotDeleteError(GnuviechadminError):
|
|
|
|
"""This exception should be raised if an entity cannot be deleted
|
|
|
|
because of some unmatched precondition."""
|
2008-06-06 21:20:18 +02:00
|
|
|
|
2007-07-09 08:46:36 +02:00
|
|
|
def __init__(self, instance, cause = None):
|
2008-06-07 23:25:35 +02:00
|
|
|
GnuviechadminError.__init__(self)
|
2007-07-09 08:46:36 +02:00
|
|
|
self.instance = instance
|
|
|
|
self.cause = cause
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
msg = "Cannot delete %s." % (str(self.instance))
|
|
|
|
if self.cause:
|
|
|
|
msg += " The reason is %s." % (str(self.cause))
|
|
|
|
return msg
|