#[derive(::std::clone::Clone, ::std::fmt::Debug, ::std::cmp::PartialEq)]
pub enum Error {
#[allow(missing_docs)]
DynamoDbEncryptionTransformsException {
message: ::std::string::String,
},
DynamoDB_20120810Error {
error: crate::deps::com_amazonaws_dynamodb::types::error::Error,
},
DynamoDbEncryptionError {
error: crate::deps::aws_cryptography_dbEncryptionSdk_dynamoDb::types::error::Error,
},
DynamoDbItemEncryptorError {
error: crate::deps::aws_cryptography_dbEncryptionSdk_dynamoDb_itemEncryptor::types::error::Error,
},
StructuredEncryptionError {
error: crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::error::Error,
},
AwsCryptographicMaterialProvidersError {
error: crate::deps::aws_cryptography_materialProviders::types::error::Error,
},
CollectionOfErrors {
list: ::std::vec::Vec<Self>,
message: ::std::string::String,
},
ValidationError(ValidationError),
Opaque {
obj: ::dafny_runtime::Object<::dafny_runtime::DynAny>,
},
OpaqueWithText {
obj: ::dafny_runtime::Object<::dafny_runtime::DynAny>,
objMessage: ::std::string::String,
},
}
impl ::std::cmp::Eq for Error {}
impl ::std::fmt::Display for Error {
fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
match self {
Self::ValidationError(err) => ::std::fmt::Display::fmt(err, f),
_ => ::std::fmt::Debug::fmt(self, f),
}
}
}
impl ::std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Self::ValidationError(err) => Some(err),
_ => None,
}
}
}
impl Error {
pub fn wrap_validation_err<E>(err: E) -> Self
where
E: ::std::error::Error + Send + Sync + 'static,
{
Self::ValidationError(ValidationError(::dafny_runtime::Rc::new(err)))
}
}
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct ValidationError(::dafny_runtime::Rc<dyn ::std::error::Error + Send + Sync>);
impl ::std::cmp::PartialEq for ValidationError {
fn eq(&self, other: &Self) -> bool {
::dafny_runtime::Rc::<(dyn std::error::Error + Send + Sync + 'static)>::ptr_eq(
&self.0, &other.0,
)
}
}
impl ::std::fmt::Display for ValidationError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
::std::fmt::Display::fmt(&self.0, f)
}
}
impl ::std::error::Error for ValidationError {
fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
::std::option::Option::Some(self.0.as_ref())
}
}