| 75 | }; |
| 76 | |
| 77 | class PackageFileNotFound : public Exception |
| 78 | { |
| 79 | public: |
| 80 | PackageFileNotFound(std::string_view path, DebugInfo info) |
| 81 | : Exception("PackageFileNotFound", info) |
| 82 | { |
| 83 | this->error( |
| 84 | "Impossible to find a Package file at following path : '{}'", path); |
| 85 | } |
| 86 | }; |
| 87 | |
| 88 | class PackageAlreadyInstalled : public Exception |
| 89 | { |