bzr branch
/bzr/kitchen/devel
| Line | Revision | Contents |
| 1 | 11 | # -*- coding: utf-8 -*- |
| 2 | # |
|
| 3 | # Copyright (c) 2010 Red Hat, Inc |
|
| 4 | # |
|
| 5 | 76 | # kitchen is free software; you can redistribute it and/or modify it under the |
| 6 | # terms of the GNU Lesser General Public License as published by the Free |
|
| 7 | # Software Foundation; either version 2.1 of the License, or (at your option) |
|
| 8 | # any later version. |
|
| 9 | # |
|
| 10 | # kitchen is distributed in the hope that it will be useful, but WITHOUT ANY |
|
| 11 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
|
| 12 | # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for |
|
| 13 | # more details. |
|
| 14 | # |
|
| 15 | # You should have received a copy of the GNU Lesser General Public License |
|
| 16 | # along with kitchen; if not, see <http://www.gnu.org/licenses/> |
|
| 17 | 11 | # |
| 18 | # Authors: |
|
| 19 | # Toshio Kuratomi <toshio@fedoraproject.org> |
|
| 20 | # |
|
| 21 | ''' |
|
| 22 | 176 | ----------------------- |
| 23 | Base kitchen exceptions |
|
| 24 | ----------------------- |
|
| 25 | ||
| 26 | 76 | Exception classes for kitchen and the root of the exception hierarchy for |
| 27 | all kitchen modules. |
|
| 28 | 11 | ''' |
| 29 | ||
| 30 | class KitchenError(Exception): |
|
| 31 | '''Base exception class for any error thrown directly by kitchen. |
|
| 32 | ''' |
|
| 33 | pass |
|
| 34 | 176 | |
| 35 | __all__ = ('KitchenError',) |
Loggerhead 1.18.1 is a web-based interface for Bazaar branches