sapling/eden/fs/rocksdb/RocksException.h
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

43 lines
1.1 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <folly/String.h>
#include <rocksdb/db.h>
namespace facebook {
namespace eden {
class RocksException : public std::exception {
public:
RocksException(const rocksdb::Status& status, const std::string& msg);
template <typename... Args>
static RocksException build(const rocksdb::Status& status, Args&&... args) {
return RocksException(
status, folly::to<std::string>(std::forward<Args>(args)...));
}
template <typename... Args>
static void check(const rocksdb::Status& status, Args&&... args) {
if (UNLIKELY(!status.ok())) {
throw build(status, std::forward<Args>(args)...);
}
}
const char* what() const noexcept override;
const rocksdb::Status& getStatus() const;
const std::string& getMsg() const;
private:
rocksdb::Status status_;
std::string msg_;
std::string fullMsg_;
};
} // namespace eden
} // namespace facebook