// Copyright © 2022 Kim Altintop // SPDX-License-Identifier: GPL-2.0-only WITH openvpn-openssl-exception pub type Error = anyhow::Error; pub type Result = anyhow::Result; #[derive(Debug, thiserror::Error)] #[error("{what} not found in {whence}")] pub struct NotFound { pub what: T, pub whence: U, }