Skip to content

Commit

Permalink
improve spelling in exception message
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Erik Støwer <[email protected]>
  • Loading branch information
esuomi and testower authored Jun 10, 2024
1 parent ae35b66 commit 461e2fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public long uploadBlob(String objectName, InputStream inputStream, String conten
try {
body = RequestBody.fromBytes(inputStream.readAllBytes());
} catch (IOException e) {
throw new BlobStoreException("Faiuled to read all bytes from given inputstream", e);
throw new BlobStoreException("Failed to read all bytes from given InputStream", e);
}

s3Client.putObject(
Expand Down

0 comments on commit 461e2fe

Please sign in to comment.