Reputation: 20862
In boto exceptions.py, there is a class BotoServerError(StandardError)
. However, in boto3 exceptions.py it no longer exists. What would be its replacement?
Upvotes: 1
Views: 1187
Reputation: 52375
In Boto3, this is pushed in botocore
.
class ClientError(Exception):
>>> from botocore.exceptions import ClientError
Upvotes: 3