MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / BadPathException

Class BadPathException

lib/vfs/vfs.h:62–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60};
61
62class BadPathException : public FilesystemException
63{
64public:
65 BadPathException(const Path& path):
66 FilesystemException(fmt::format("Bad path: '{}'", path.to_str()))
67 {
68 }
69
70 BadPathException(): FilesystemException("Bad path") {}
71
72 BadPathException(const std::string& msg): FilesystemException(msg) {}
73};
74
75class FileNotFoundException : public FilesystemException
76{

Callers 15

getDirentMethod · 0.85
getFileMethod · 0.85
putFileMethod · 0.85
deleteFileMethod · 0.85
moveFileMethod · 0.85
createDirectoryMethod · 0.85
findFileMethod · 0.85
getDirentMethod · 0.85
getFileMethod · 0.85
getDirentMethod · 0.85
getFileMethod · 0.85
listMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected