| 30 | }; |
| 31 | |
| 32 | class MountFileMissing : public Exception |
| 33 | { |
| 34 | public: |
| 35 | MountFileMissing(std::string_view currentPath, DebugInfo info) |
| 36 | : Exception("MountFileMissing", info) |
| 37 | { |
| 38 | this->error( |
| 39 | "Could not find Mount.vili file in the execution directory : '{}'", |
| 40 | currentPath); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | class MountablePathIndexOverflow : public Exception |
| 45 | { |