// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DBUS_ERROR_H_ #define DBUS_ERROR_H_ #include <string> #include "dbus/dbus_export.h" namespace dbus { // Represents D-Bus related errors. // This carries error info retrieved from libdbus. Some APIs under dbus/ // may return empty Error instance to represent the API failed, but not // from libdbus. class CHROME_DBUS_EXPORT Error { … }; } // namespace dbus #endif // DBUS_ERROR_H_