Error attempting to retrieve a token from a remote source. :ivar provider: The name of the token provider. :ivar error_msg: The msg explaining why the token could not be retrieved.
| 163 | |
| 164 | |
| 165 | class TokenRetrievalError(BotoCoreError): |
| 166 | """ |
| 167 | Error attempting to retrieve a token from a remote source. |
| 168 | |
| 169 | :ivar provider: The name of the token provider. |
| 170 | :ivar error_msg: The msg explaining why the token could not be retrieved. |
| 171 | |
| 172 | """ |
| 173 | |
| 174 | fmt = 'Error when retrieving token from {provider}: {error_msg}' |
| 175 | |
| 176 | |
| 177 | class PartialCredentialsError(BotoCoreError): |