Use thiserror for error handling with less boilerplate

This commit is contained in:
Steve Cook
2023-02-20 09:41:28 -05:00
parent 01e4f4a126
commit f8b29f37db
135 changed files with 868 additions and 905 deletions

View File

@@ -128,7 +128,7 @@ impl LuminanceSource for RGBLuminanceSource {
height,
) {
Ok(crop) => Ok(Box::new(crop)),
Err(_error) => Err(Exceptions::unsupportedOperation),
Err(_error) => Err(Exceptions::UNSUPPORTED_OPERATION),
}
}
@@ -180,7 +180,7 @@ impl RGBLuminanceSource {
height: usize,
) -> Result<Self> {
if left + width > data_width || top + height > data_height {
return Err(Exceptions::illegalArgumentWith(
return Err(Exceptions::illegal_argument_with(
"Crop rectangle does not fit within image data.",
));
}