deskflow/src/lib/base/BaseException.cpp
2025-08-11 17:14:45 +01:00

57 lines
1.2 KiB
C++

/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2025 Deskflow Developers
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#include "base/BaseException.h"
#include "base/String.h"
#include <cstdarg>
//
// BaseException
//
BaseException::BaseException() : std::runtime_error("")
{
// do nothing
}
BaseException::BaseException(const std::string &msg) : std::runtime_error(msg)
{
// do nothing
}
const char *BaseException::what() const throw()
{
if (const char *what = std::runtime_error::what(); what != nullptr && what[0] != '\0') {
return what;
}
m_what = getWhat();
return m_what.c_str();
}
std::string BaseException::format(const char * /*id*/, const char *fmt, ...) const noexcept
{
// FIXME -- lookup message string using id as an index. set
// fmt to that string if it exists.
// format
std::string result;
va_list args;
va_start(args, fmt);
try {
result = deskflow::string::vformat(fmt, args);
} catch (...) {
// ignore
result.clear();
}
va_end(args);
return result;
}