MCPcopy Create free account
hub / github.com/apache/cloudberry / S3ConnectionError

Class S3ConnectionError

gpcontrib/gpcloud/include/s3exception.h:35–49  ·  view source on GitHub ↗

HTTP request failed InternalError, RequestTimeout or ServiceUnavailable

Source from the content-addressed store, hash-verified

33// HTTP request failed
34// InternalError, RequestTimeout or ServiceUnavailable
35class S3ConnectionError : public S3Exception {
36 public:
37 S3ConnectionError(const string& msg) : message(msg) {
38 }
39 virtual ~S3ConnectionError() {
40 }
41 virtual string getMessage() {
42 return "Server connection failed: " + message;
43 }
44 virtual string getType() {
45 return "S3ConnectionError";
46 }
47
48 string message;
49};
50
51class S3ResolveError : public S3Exception {
52 public:

Callers 1

TEST_FFunction · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68