- Updated ResourceAlreadyExistsException(LogsClientError) to latest Boto3 error msg when using CWL Logs

This commit is contained in:
brett55 2018-08-02 16:09:10 -06:00
commit ac4197ca47

View file

@ -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'
)