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

Class S3RuntimeError

gpcontrib/gpcloud/include/s3exception.h:150–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148};
149
150class S3RuntimeError : public S3Exception {
151 public:
152 S3RuntimeError(const string& msg) : message(msg) {
153 }
154 virtual ~S3RuntimeError() {
155 }
156 virtual string getMessage() {
157 return "Unexpected error: " + message;
158 }
159
160 virtual string getType() {
161 return "S3RuntimeError";
162 }
163
164 string message;
165};
166
167class S3ConfigError : public S3Exception {
168 public:

Callers 2

TEST_FFunction · 0.85
readMethod · 0.85

Calls

no outgoing calls

Tested by 1

TEST_FFunction · 0.68