cosmic_freedesktop_icons/theme/
error.rs
1use std::io;
2use std::path::PathBuf;
3use thiserror::Error;
4
5#[derive(Error, Debug)]
6pub(crate) enum ThemeError {
7 #[error("No 'index.theme' file for {0}")]
8 ThemeIndexNotFound(PathBuf),
9 #[error("IoError: {0}")]
10 IoError(#[from] io::Error),
11}