You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SdkBaseException < ServiceException < com.example.foo.SomeException
OR in case of AWS services
SdkBaseException < ServiceException < AwsServiceException < aws.sdk.kotlin.foo.SomeException
We should consider changing this to generate a per/service base exception such that the hierarchy looks like:
Currently we generate something like:
We should consider changing this to generate a per/service base exception such that the hierarchy looks like:
This would allow customers to catch exceptions "at a distance" and distinguish which service was at fault.
Note: The Java V2 SDK does it this way.
The text was updated successfully, but these errors were encountered: