| 304 | |
| 305 | template <typename... PrefixArgs> |
| 306 | Status ExceptionToStatus(const Azure::Core::RequestFailedException& exception, |
| 307 | PrefixArgs&&... prefix_args) { |
| 308 | return Status::IOError(std::forward<PrefixArgs>(prefix_args)..., " Azure Error: [", |
| 309 | exception.ErrorCode, "] ", exception.what()); |
| 310 | } |
| 311 | |
| 312 | std::string BuildApplicationId() { |
| 313 | return "azpartner-arrow/" + GetBuildInfo().version_string; |
no test coverage detected