use camino::Utf8PathBuf;
#[derive(Debug, PartialEq, thiserror::Error)]
pub enum VicarianError {
#[error("TLS Key & Cert don't match: {0}, {1}")]
CertificateMismatch(Utf8PathBuf, Utf8PathBuf),
#[error(transparent)]
RustlsError(#[from] rustls::Error),
}