From ac4197ca47d6f1a54a21f554154e2a1cc7b87522 Mon Sep 17 00:00:00 2001 From: brett55 Date: Thu, 2 Aug 2018 16:09:10 -0600 Subject: [PATCH] - Updated ResourceAlreadyExistsException(LogsClientError) to latest Boto3 error msg when using CWL Logs --- moto/logs/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/logs/exceptions.py b/moto/logs/exceptions.py index cc83452ea..bb02eced3 100644 --- a/moto/logs/exceptions.py +++ b/moto/logs/exceptions.py @@ -29,5 +29,5 @@ class ResourceAlreadyExistsException(LogsClientError): self.code = 400 super(ResourceAlreadyExistsException, self).__init__( 'ResourceAlreadyExistsException', - 'The specified resource already exists.' + 'The specified log group already exists' )