python – Boto3 InvalidParameterException

前端之家收集整理的这篇文章主要介绍了python – Boto3 InvalidParameterException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一些调用AWS的Rekognition服务的代码.有时会抛出此异常:

An error occurred (InvalidParameterException) when calling the DetectLabels operation: Request has Invalid Parameters

但是,我无法在文档或代码中的任何位置找到InvalidParameterException,因此我无法在发生这种情况时编写特定的处理程序.有谁知道该例外的库模块是什么?

最佳答案
我在boto/cognito/identity/exceptions.py找到它:

from boto.exception import BotoServerError

class InvalidParameterException(BotoServerError):
    pass
原文链接:https://www.f2er.com/python/438692.html

猜你在找的Python相关文章