Skip to content

Commit

Permalink
refactor: fix naming in AWSEnvironmentProviderExample
Browse files Browse the repository at this point in the history
  • Loading branch information
ddudda174 committed Mar 20, 2024
1 parent 821db3e commit 8174ea1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Minio.Examples/Cases/AWSEnvironmentProviderExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public static async Task Run()
}
catch (MinioException me)
{
Console.WriteLine($"[Bucket] IAMAWSProviderExample example case encountered Exception: {me}");
Console.WriteLine($"[Bucket] AWSEnvironmentProviderExample example case encountered MinioException: {me}");
}
catch (Exception e)
{
Console.WriteLine($"[Bucket] IAMAWSProviderExample example case encountered Exception: {e}");
Console.WriteLine($"[Bucket] AWSEnvironmentProviderExample example case encountered Exception: {e}");
}
}
}

0 comments on commit 8174ea1

Please sign in to comment.