In .:
2006-05-15 Alex Roitman <shura@gramps-project.org> * configure.in: Generate new Makefile. * src/Makefile.am: adapt to new module. * src/Selectors: separate selectors in their own module. * src/Select*.py: move to Selectors. * src/DataViews/_FamilyView.py: Use new module. * src/Editors/_EditLdsOrd.py: Use new module. * src/Editors/_EditPersonRef.py: Use new module. * src/Editors/_EditFamily.py: Use new module. * src/DisplayTabs/_SourceEmbedList.py: Use new module. * src/DisplayTabs/_RepoEmbedList.py: Use new module. * src/DisplayTabs/_EventEmbedList.py: Use new module. * src/DisplayTabs/_GalleryTab.py: Use new module. * src/plugins/FilterEditor.py: Use new module. * src/plugins/SimpleBookTitle.py: Use new module. * src/PluginUtils/_Report.py: Use new module. In po: 2006-05-15 Alex Roitman <shura@gramps-project.org> * POTFILES.in: Add new files. svn: r6669
This commit is contained in:
29
src/Selectors/_SelectorExceptions.py
Normal file
29
src/Selectors/_SelectorExceptions.py
Normal file
@@ -0,0 +1,29 @@
|
||||
#
|
||||
# Gramps - a GTK+/GNOME based genealogy program
|
||||
#
|
||||
# Copyright (C) 2000-2006 Donald N. Allingham
|
||||
#
|
||||
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
|
||||
# $Id: __init__.py 6392 2006-04-21 18:15:23Z dallingham $
|
||||
|
||||
class SelectorException(Exception):
|
||||
|
||||
def __init__(self, value):
|
||||
self.value = value
|
||||
|
||||
def __str__(self):
|
||||
return repr(self.value)
|
||||
Reference in New Issue
Block a user