Missing constructor

This commit is contained in:
Laurent Destailleur 2011-08-10 12:46:04 +00:00
parent 0cd303c505
commit 9d99b61f2d

View File

@ -19,15 +19,17 @@
* \file htdocs/core/class/dolexception.class.php * \file htdocs/core/class/dolexception.class.php
* \ingroup core * \ingroup core
* \brief File of class for exceptions * \brief File of class for exceptions
* \version $Id: dolexception.class.php,v 1.3 2011/07/31 23:45:14 eldy Exp $ * \version $Id: dolexception.class.php,v 1.4 2011/08/10 12:46:04 eldy Exp $
*/ */
/** /**
* \class DolException * \class DolException
* \brief Classe de la gestion des exceptions * \brief Class to manage exceptions
*/ */
class DolException extends Exception class DolException extends Exception
{ {
function DolException()
{
}
} }