| 86 | }; |
| 87 | |
| 88 | class PackageAlreadyInstalled : public Exception |
| 89 | { |
| 90 | public: |
| 91 | PackageAlreadyInstalled(std::string_view package, DebugInfo info) |
| 92 | : Exception("PackageAlreadyInstalled", info) |
| 93 | { |
| 94 | this->error("A Package named '{}' is already installed", package); |
| 95 | } |
| 96 | }; |
| 97 | |
| 98 | class UnknownWorkspace : public Exception |
| 99 | { |