我有一些调用AWS的Rekognition服务的代码.有时会抛出此异常:
An error occurred (InvalidParameterException) when calling the DetectLabels operation: Request has Invalid Parameters
但是,我无法在文档或代码中的任何位置找到InvalidParameterException,因此我无法在发生这种情况时编写特定的处理程序.有谁知道该例外的库模块是什么?
最佳答案
我在
原文链接:https://www.f2er.com/python/438692.htmlboto/cognito/identity/exceptions.py
找到它:
from boto.exception import BotoServerError
class InvalidParameterException(BotoServerError):
pass