risingwave_common_secret/
error.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15pub 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}