Beispiel #1
0
    def _processAccessError(self, e):
        """Treats access errors occured during the process of a RH.
        """
        Logger.get('requestHandler').info(
            'Request %s finished with AccessError: "%s"' % (id(self._req), e))

        self._req.status = apache.HTTP_FORBIDDEN
        p = errors.WPAccessError(self)
        return p.display()
Beispiel #2
0
 def _processAccessError(self, e):
     """Treats access errors occured during the process of a RH."""
     return errors.WPAccessError(self).display()
Beispiel #3
0
    def _processAccessError(self, e):
        """Treats access errors occured during the process of a RH."""

        self._responseUtil.status = 403
        return errors.WPAccessError(self).display()