The specified configuration profile was not found in the configuration file. :ivar profile: The name of the profile the user attempted to load.
| 280 | |
| 281 | |
| 282 | class ProfileNotFound(BotoCoreError): |
| 283 | """ |
| 284 | The specified configuration profile was not found in the |
| 285 | configuration file. |
| 286 | |
| 287 | :ivar profile: The name of the profile the user attempted to load. |
| 288 | """ |
| 289 | |
| 290 | fmt = 'The config profile ({profile}) could not be found' |
| 291 | |
| 292 | |
| 293 | class ConfigParseError(BotoCoreError): |
no outgoing calls