sapling/eden/fs/rocksdb/RocksException.cpp
Adam Simpkins 251da81f36 update all copyright statements to "2016-present"
Summary:
Update copyright statements to "2016-present".  This makes our updated lint
rules happy and complies with the recommended license header statement.

Reviewed By: wez, bolinfest

Differential Revision: D4433594

fbshipit-source-id: e9ecb1c1fc66e4ec49c1f046c6a98d425b13bc27
2017-01-20 22:03:02 -08:00

35 lines
832 B
C++

/*
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#include "RocksException.h"
namespace facebook {
namespace eden {
RocksException::RocksException(
const rocksdb::Status& status,
const std::string& msg)
: status_(status), msg_(msg) {
fullMsg_ = folly::to<std::string>(msg, "(Status: ", status_.ToString(), ")");
}
const char* RocksException::what() const noexcept {
return fullMsg_.c_str();
}
const rocksdb::Status& RocksException::getStatus() const {
return status_;
}
const std::string& RocksException::getMsg() const {
return msg_;
}
}
}