From d288f7d816f3324aac058eba61f17d13907491ce Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Wed, 21 Apr 2010 16:55:19 +0000 Subject: [PATCH] Add class exception for the futur full php5 --- htdocs/core/exception.class.php | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 htdocs/core/exception.class.php diff --git a/htdocs/core/exception.class.php b/htdocs/core/exception.class.php new file mode 100644 index 00000000000..26a24d3fb25 --- /dev/null +++ b/htdocs/core/exception.class.php @@ -0,0 +1,34 @@ + + * + * 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. + */ + +/** + * \file htdocs/core/exception.class.php + * \ingroup core + * \brief Fichier de la classe de gestion des exceptions + * \version $Id$ + */ + + +/** + * \class Dolibarr_Exception + * \brief Classe de la gestion des exceptions + */ +class Dolibarr_Exception extends Exception +{ + +} \ No newline at end of file