Program Listing for File exceptions.h
↰ Return to documentation for file (include/appimage/desktop_integration/exceptions.h)
#pragma once
// local
#include <appimage/core/exceptions.h>
namespace appimage {
namespace desktop_integration {
class DesktopIntegrationError : public core::AppImageError {
public:
explicit DesktopIntegrationError(const std::string& what) : core::AppImageError(what) {}
};
}
}