Atlas-Launcher/external/vfs/source/exception/FileNotFoundException.cpp

9 lines
234 B
C++

#include "exception/FileNotFoundException.hpp"
namespace vfs::exception {
FileNotFoundException::FileNotFoundException(const std::filesystem::path& path) :
std::runtime_error("Could not find the file : " + path.string()) {}
}