mirror of
https://github.com/Almamu/linux-wallpaperengine.git
synced 2025-07-14 13:22:23 +08:00
15 lines
345 B
C++
15 lines
345 B
C++
#include "CAssetLoadException.h"
|
|
|
|
using namespace WallpaperEngine::Assets;
|
|
|
|
CAssetLoadException::CAssetLoadException(const std::string& filename, const std::string& extrainfo)
|
|
: m_message("Cannot find file " + filename + ": " + extrainfo)
|
|
{
|
|
|
|
}
|
|
|
|
const char *CAssetLoadException::what() const noexcept
|
|
{
|
|
return this->m_message.c_str ();
|
|
}
|