risingwave_common_secret/
error.rs1pub use anyhow::anyhow;
16use thiserror::Error;
17use thiserror_ext::Construct;
18
19use super::SecretId;
20
21pub type SecretResult<T> = Result<T, SecretError>;
22
23#[derive(Error, Debug, Construct)]
24pub enum SecretError {
25 #[error("secret not found: {0}")]
26 ItemNotFound(SecretId),
27
28 #[error("decode utf8 error: {0}")]
29 DecodeUtf8Error(#[from] std::string::FromUtf8Error),
30
31 #[error("I/O error: {0}")]
32 IoError(#[from] std::io::Error),
33
34 #[error("unspecified secret ref type: {0}")]
35 UnspecifiedRefType(SecretId),
36
37 #[error("fail to encrypt/decrypt secret")]
38 AesError,
39
40 #[error("ser/de proto message error: {0}")]
41 ProtoError(#[from] bincode::Error),
42
43 #[error(transparent)]
44 Internal(#[from] anyhow::Error),
45}