-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revamp errors in
aws-smithy-checksums
- Loading branch information
Showing
2 changed files
with
43 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
use std::error::Error; | ||
use std::fmt; | ||
|
||
/// A checksum algorithm was unknown | ||
#[derive(Debug)] | ||
pub struct UnknownChecksumAlgorithmError { | ||
checksum_algorithm: String, | ||
} | ||
|
||
impl UnknownChecksumAlgorithmError { | ||
pub(crate) fn new(checksum_algorithm: impl Into<String>) -> Self { | ||
Self { | ||
checksum_algorithm: checksum_algorithm.into(), | ||
} | ||
} | ||
|
||
/// The checksum algorithm that is unknown | ||
pub fn checksum_algorithm(&self) -> &str { | ||
&self.checksum_algorithm | ||
} | ||
} | ||
|
||
impl fmt::Display for UnknownChecksumAlgorithmError { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
write!( | ||
f, | ||
r#"unknown checksum algorithm "{}", please pass a known algorithm name ("crc32", "crc32c", "sha1", "sha256", "md5")"#, | ||
self.checksum_algorithm | ||
) | ||
} | ||
} | ||
|
||
impl Error for UnknownChecksumAlgorithmError {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters