(self)
| 233 | """Render an exception as JSON.""" |
| 234 | |
| 235 | def full(self) -> HTTPResponse: |
| 236 | output = self._generate_output(full=True) |
| 237 | return json(output, dumps=self.dumps) |
| 238 | |
| 239 | def minimal(self) -> HTTPResponse: |
| 240 | output = self._generate_output(full=False) |
nothing calls this directly
no test coverage detected