Error description; empty string when successful.
(self)
| 1149 | |
| 1150 | @property |
| 1151 | def error_message(self) -> str: |
| 1152 | """Error description; empty string when successful.""" |
| 1153 | if self.success: |
| 1154 | return "" |
| 1155 | return self._raw.error() |
| 1156 | |
| 1157 | def _require_page_decoder(self) -> PdfPageDecoder: |
| 1158 | if not self.success: |
nothing calls this directly
no outgoing calls
no test coverage detected