# HG changeset patch # User Goffi # Date 1295309060 -3600 # Node ID aac82dee60917f46572358064e012ef674058241 # Parent 012c38b56cddf08872067e6b128df11155e8a0d4 Added a library for custom SàT Exceptions diff -r 012c38b56cdd -r aac82dee6091 src/exceptions.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/exceptions.py Tue Jan 18 01:04:20 2011 +0100 @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +""" +SàT Exceptions +Copyright (C) 2011 Jérôme Poisson (goffi@goffi.org) + +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 3 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, see . +""" + +class ProfileUnknownError(Exception): + pass