source: tailor/vcpx/__init__.py @ 1229

Revision 1229, 599 bytes checked in by lele@…, 7 years ago (diff)

Replaced string exceptions with a proper TailorException? subclass

Line 
1# -*- mode: python; coding: utf-8 -*-
2# :Progetto: vcpx - Version Control Patch eXchanger
3# :Creato:   mer 16 giu 2004 00:15:54 CEST
4# :Autore:   Lele Gaifax <lele@nautilus.homeip.net>
5# :Licenza:  GNU General Public License
6#
7
8"""
9vcpx - Version Control Patch eXchanger
10======================================
11
12This package encapsulates the machinery needed to keep the patches in
13sync across different VC systems.
14"""
15
16__docformat__ = 'reStructuredText'
17
18
19class TailorException(Exception):
20    "Common base for tailor exceptions"
21
22class TailorBug(TailorException):
23    "Tailor bug (please report)"
Note: See TracBrowser for help on using the repository browser.