blob: 0810dda35a75e25a89c929a1bb62815715cbe8f3 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_LIB_UNWINDER_ERROR_H_
#define SRC_LIB_UNWINDER_ERROR_H_
#include <string>
#include <utility>
#include <variant>
namespace unwinder {
class Error {
public:
[[gnu::format(printf, 2, 3)]] explicit Error(const char* fmt, ...);
explicit Error(std::string msg) : has_err_(true), msg_(std::move(msg)) {}
bool has_err() const { return has_err_; }
bool ok() const { return !has_err(); }
const std::string& msg() const { return msg_; }
private:
// Use Success() to create an explicit success.
Error() = default;
friend Error Success();
bool has_err_ = false;
std::string msg_;
};
// Special way to create a non-error Error object.
inline Error Success() { return Error(); }
} // namespace unwinder
#endif // SRC_LIB_UNWINDER_ERROR_H_