summaryrefslogtreecommitdiff
path: root/crates/winioctl/src/error.rs
blob: 968b166cea3df045e5f9312245f3515fef279f3f (plain) (blame)
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
  #[error(transparent)]
  IoError(#[from] std::io::Error),
}