- 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
parent 2e5e7e7f5e
commit ac4197ca47

View File

@ -29,5 +29,5 @@ class ResourceAlreadyExistsException(LogsClientError):
self.code = 400 self.code = 400
super(ResourceAlreadyExistsException, self).__init__( super(ResourceAlreadyExistsException, self).__init__(
'ResourceAlreadyExistsException', 'ResourceAlreadyExistsException',
'The specified resource already exists.' 'The specified log group already exists'
) )