sapling/eden/fs/inodes/EdenMountError.h
Chad Austin 9fa292b9ed standardize namespaces on C++17 syntax
Reviewed By: genevievehelsel

Differential Revision: D36429182

fbshipit-source-id: 7d355917abf463493c37139856810de13e1090ff
2022-05-17 10:12:56 -07:00

21 lines
494 B
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <stdexcept>
namespace facebook::eden {
class EdenMountError : public std::runtime_error {
public:
explicit EdenMountError(const std::string& what) : std::runtime_error{what} {}
explicit EdenMountError(const char* what) : std::runtime_error{what} {}
};
} // namespace facebook::eden