1
0
mirror of https://github.com/minio/minio-cpp.git synced 2026-01-27 16:02:51 +03:00
Files
minio-cpp/include/error.h
Bala FA 64ccf5e0a9 Add HTTP cancellation support (#29)
Signed-off-by: Bala.FA <bala@minio.io>
2022-06-12 11:49:28 +05:30

39 lines
1.1 KiB
C++

// MinIO C++ Library for Amazon S3 Compatible Cloud Storage
// Copyright 2022 MinIO, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef _MINIO_ERROR_H
#define _MINIO_ERROR_H
#include <string>
namespace minio {
namespace error {
class Error {
private:
std::string msg_;
public:
Error() {}
Error(std::string_view msg) { this->msg_ = std::string(msg); }
std::string String() { return msg_; }
operator bool() const { return !msg_.empty(); }
}; // class Error
const static Error SUCCESS;
} // namespace error
} // namespace minio
#endif // #ifndef _MINIO_ERROR_H