Skip to content
Extraits de code Groupes Projets
Valider 80a0463f rédigé par diosmosis's avatar diosmosis
Parcourir les fichiers

In ExceptionHandler::getErrorResponse(), ignore case where event posting fails...

In ExceptionHandler::getErrorResponse(), ignore case where event posting fails because the environment has not been created yet. Fixes EnvironmentValidationTest. Includes new exception thrown when StaticContainer cannot find an existing container.
parent 5fe7ae34
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Container;
use RuntimeException;
/**
* Thrown if the root container has not been created and set in StaticContainer.
*/
class ContainerDoesNotExistException extends RuntimeException
{
}
\ No newline at end of file
...@@ -37,7 +37,7 @@ class StaticContainer ...@@ -37,7 +37,7 @@ class StaticContainer
public static function getContainer() public static function getContainer()
{ {
if (self::$container === null) { if (self::$container === null) {
throw new \Exception("The root container has not been created yet."); throw new ContainerDoesNotExistException("The root container has not been created yet.");
} }
return self::$container; return self::$container;
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
namespace Piwik; namespace Piwik;
use Exception; use Exception;
use Piwik\Container\ContainerDoesNotExistException;
use Piwik\Plugins\CoreAdminHome\CustomLogo; use Piwik\Plugins\CoreAdminHome\CustomLogo;
/** /**
...@@ -87,16 +88,20 @@ class ExceptionHandler ...@@ -87,16 +88,20 @@ class ExceptionHandler
$result = Piwik_GetErrorMessagePage($message, $debugTrace, true, true, $logoHeaderUrl, $logoFaviconUrl); $result = Piwik_GetErrorMessagePage($message, $debugTrace, true, true, $logoHeaderUrl, $logoFaviconUrl);
/** try {
* Triggered before a Piwik error page is displayed to the user. /**
* * Triggered before a Piwik error page is displayed to the user.
* This event can be used to modify the content of the error page that is displayed when *
* an exception is caught. * This event can be used to modify the content of the error page that is displayed when
* * an exception is caught.
* @param string &$result The HTML of the error page. *
* @param Exception $ex The Exception displayed in the error page. * @param string &$result The HTML of the error page.
*/ * @param Exception $ex The Exception displayed in the error page.
Piwik::postEvent('FrontController.modifyErrorPage', array(&$result, $ex)); */
Piwik::postEvent('FrontController.modifyErrorPage', array(&$result, $ex));
} catch (ContainerDoesNotExistException $ex) {
// this can happen when an error occurs before the Piwik environment is created
}
return $result; return $result;
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter