(self)
| 677 | """ |
| 678 | |
| 679 | def __str__(self): |
| 680 | return ( |
| 681 | self._base_str() |
| 682 | + "\n\n" |
| 683 | + ( |
| 684 | f"Fetch for object {self.object_ref_hex} timed out because no " |
| 685 | "locations were found for the object. This may indicate a " |
| 686 | "system-level bug." |
| 687 | ) |
| 688 | ) |
| 689 | |
| 690 | |
| 691 | @DeveloperAPI |