#[derive(Debug, thiserror::Error)]
pub enum Error {
#[error("No window environment is running.")]
NoWindowEnvironment,
#[error("You don't have permission to access the window property: {0}")]
PermissionDenied(super::platform_impl::PlatformError),
#[error("A platform-specific error occurred: {0}")]
PlatformSpecificError(super::platform_impl::PlatformError),
}