(self, message="", details=True)
| 829 | |
| 830 | # You are not allowed to access this |
| 831 | def error403(self, message="", details=True): |
| 832 | self.sendHeader(403, noscript=True) |
| 833 | self.log.error("Error 403: %s" % message) |
| 834 | return self.formatError("Forbidden", message, details=details) |
| 835 | |
| 836 | # Send file not found error |
| 837 | def error404(self, path=""): |
no test coverage detected