identity_storage/storage/
error.rsuse crate::key_id_storage::KeyIdStorageError;
use crate::key_id_storage::MethodDigestConstructionError;
use crate::key_storage::KeyStorageError;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum JwkStorageDocumentError {
#[error("storage operation failed: key storage error")]
KeyStorageError(KeyStorageError),
#[error("storage operation failed: key id storage error: {0}")]
KeyIdStorageError(KeyIdStorageError),
#[error("could not add method: the fragment already exists")]
FragmentAlreadyExists,
#[error("method not found")]
MethodNotFound,
#[error("invalid method data format: expected publicKeyJwk")]
NotPublicKeyJwk,
#[error("invalid JWS algorithm")]
InvalidJwsAlgorithm,
#[error("invalid JWP algorithm")]
InvalidJwpAlgorithm,
#[error("Not able to construct a valid Jwp")]
JwpBuildingError,
#[error("Credential's proof internal error")]
ProofUpdateError(String),
#[error("method generation failed: unable to create a valid verification method")]
VerificationMethodConstructionError(#[source] identity_verification::Error),
#[error("could not produce jwt: encoding error")]
EncodingError(#[source] Box<dyn std::error::Error + Send + Sync + 'static>),
#[error("unable to produce method digest")]
MethodDigestConstructionError(#[source] MethodDigestConstructionError),
#[error("could not produce JWS payload from the given claims: serialization failed")]
ClaimsSerializationError(#[source] identity_credential::Error),
#[error("storage operation failed after altering state. Unable to undo operation(s): {message}")]
UndoOperationFailed {
message: String,
source: Box<Self>,
undo_error: Option<Box<Self>>,
},
}
#[cfg(test)]
mod tests {
use super::JwkStorageDocumentError;
fn is_send_sync<T: Send + Sync + 'static>(_input: T) {}
#[test]
fn error_is_send_sync() {
is_send_sync(JwkStorageDocumentError::FragmentAlreadyExists);
}
}