InvalidParameterException

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

10-08 05:37