blob: 98c3ea532ee0ad5d5f3de0e964a4804ea8ea35f4 (
plain)
1
2
3
4
5
6
7
8
|
/// Errors related to split tunneling.
#[derive(thiserror::Error, Debug)]
pub enum Error {
/// Failed to update the set of excluded apps. This implies that the current
/// tunnel was not recreated.
#[error("Failed to update the set of excluded apps")]
SetExcludedApps(#[source] talpid_tunnel::tun_provider::Error),
}
|