Error attempting to retrieve credentials from a remote source. :ivar provider: The name of the credential provider. :ivar error_msg: The msg explaining why credentials could not be retrieved.
| 186 | |
| 187 | |
| 188 | class CredentialRetrievalError(BotoCoreError): |
| 189 | """ |
| 190 | Error attempting to retrieve credentials from a remote source. |
| 191 | |
| 192 | :ivar provider: The name of the credential provider. |
| 193 | :ivar error_msg: The msg explaining why credentials could not be |
| 194 | retrieved. |
| 195 | |
| 196 | """ |
| 197 | |
| 198 | fmt = 'Error when retrieving credentials from {provider}: {error_msg}' |
| 199 | |
| 200 | |
| 201 | class UnknownSignatureVersionError(BotoCoreError): |
no outgoing calls
no test coverage detected