Subversion Repositories Applications.framework

Rev

Rev 366 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 366 Rev 367
Line 9... Line 9...
9
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
9
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
10
 * @author		Jean-Pascal MILCENT <jmp@tela-botanica.org>
10
 * @author		Jean-Pascal MILCENT <jmp@tela-botanica.org>
11
 * @copyright	Copyright (c) 2009, Tela Botanica (accueil@tela-botanica.org)
11
 * @copyright	Copyright (c) 2009, Tela Botanica (accueil@tela-botanica.org)
12
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
14
 * @version	$Id: GestionnaireException.php 366 2011-09-30 08:20:45Z jpm $$
14
 * @version	$Id: GestionnaireException.php 367 2011-10-03 12:40:48Z jpm $$
15
 * @link		/doc/framework/
15
 * @link		/doc/framework/
16
 *
16
 *
17
 */
17
 */
18
class GestionnaireException {
18
class GestionnaireException {
Line 184... Line 184...
184
	 * Formate en texte une exception passée en paramètre.
184
	 * Formate en texte une exception passée en paramètre.
185
	 * @since 0.3
185
	 * @since 0.3
186
	 * @param Exception l'exception à formater.
186
	 * @param Exception l'exception à formater.
187
	 */
187
	 */
188
	public static function formaterExceptionDebug(Exception $e) {
188
	public static function formaterExceptionDebug(Exception $e) {
-
 
189
		$txt = '';
-
 
190
		if ($e->getSeverity() == E_USER_NOTICE) {
189
		return $e->getMessage();
191
			$txt = $e->getMessage();
-
 
192
		} else {
-
 
193
			$txt = self::formaterExceptionTxt($e);
-
 
194
		}
-
 
195
		return $txt;
190
	}
196
	}
Line 191... Line 197...
191
	
197
	
192
	/**
198
	/**
193
	 * Formate en texte une exception passée en paramètre.
199
	 * Formate en texte une exception passée en paramètre.