From 0a4d2037df89136e6b76ad5bdbb1ffad50c5064c Mon Sep 17 00:00:00 2001 From: Devin Bjelland Date: Thu, 29 Mar 2018 18:42:53 -0500 Subject: [PATCH] fix bug with Kinesis ResourceInUse exception (#1544) --- moto/kinesis/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/kinesis/exceptions.py b/moto/kinesis/exceptions.py index e2fe0277..82f796ec 100644 --- a/moto/kinesis/exceptions.py +++ b/moto/kinesis/exceptions.py @@ -17,7 +17,7 @@ class ResourceNotFoundError(BadRequest): class ResourceInUseError(BadRequest): def __init__(self, message): - super(ResourceNotFoundError, self).__init__() + super(ResourceInUseError, self).__init__() self.description = json.dumps({ "message": message, '__type': 'ResourceInUseException',