commonMain.aws.smithy.kotlin.runtime.auth.awscredentials.CredentialsProviderException.kt Maven / Gradle / Ivy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package aws.smithy.kotlin.runtime.auth.awscredentials
import aws.smithy.kotlin.runtime.ClientException
/**
* The [CredentialsProvider] experienced an error during credentials resolution
*/
public class CredentialsProviderException(message: String, cause: Throwable? = null) : ClientException(message, cause)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy