| 591 | } |
| 592 | |
| 593 | Status CrossContainerMoveNotImplemented(const AzureLocation& src, |
| 594 | const AzureLocation& dest) { |
| 595 | return Status::NotImplemented( |
| 596 | "Move of '", src.all, "' to '", dest.all, |
| 597 | "' requires moving data between containers, which is not implemented."); |
| 598 | } |
| 599 | |
| 600 | bool IsContainerNotFound(const Core::RequestFailedException& e) { |
| 601 | // In some situations, only the ReasonPhrase is set and the |
no test coverage detected