10 #ifndef WRENCH_FILENOTFOUND_H
11 #define WRENCH_FILENOTFOUND_H
16 #include "FailureCause.h"
36 FileNotFound(std::shared_ptr<DataFile>file, std::shared_ptr<FileLocation> location);
41 std::shared_ptr<DataFile>
getFile();
46 std::shared_ptr<DataFile>file;
47 std::shared_ptr<FileLocation> location;
56 #endif //WRENCH_FILENOTFOUND_H
std::shared_ptr< DataFile > getFile()
Getter.
Definition: FileNotFound.cpp:34
A "file was not found" failure cause.
Definition: FileNotFound.h:30
std::shared_ptr< FileLocation > getLocation()
Getter.
Definition: FileNotFound.cpp:42
Definition: Action.cpp:28
A top-level class to describe all simulation-valid failures that can occur during workflow execution ...
Definition: FailureCause.h:31
FileNotFound(std::shared_ptr< DataFile >file, std::shared_ptr< FileLocation > location)
Constructor.
Definition: FileNotFound.cpp:25
std::string toString() override
Get the human-readable failure message.
Definition: FileNotFound.cpp:50