mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 21:15:33 +08:00
14 lines
331 B
C++
14 lines
331 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2018 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
#include "dbuserror.h"
|
|
|
|
namespace XSwiftBus
|
|
{
|
|
|
|
CDBusError::CDBusError(const DBusError *error)
|
|
: m_name(error->name), m_message(error->message)
|
|
{}
|
|
|
|
}
|