
com.amazonaws.mobileconnectors.iot.AWSIotCertificateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-android-sdk-iot Show documentation
Show all versions of aws-android-sdk-iot Show documentation
The AWS Android SDK for AWS IoT module holds the client classes that are used for communicating with AWS IoT Service
package com.amazonaws.mobileconnectors.iot;
import com.amazonaws.AmazonClientException;
/**
* Certificate exception ecapsulates all of the various underlying
* certificate/keystore exceptions.
*/
public class AWSIotCertificateException extends AmazonClientException {
/**
* Create a new AWSIotCertificateException.
*
* @param message error message.
* @param t throwable - the underlying exception.
*/
public AWSIotCertificateException(String message, Throwable t) {
super(message, t);
}
/**
* Create a new AWSIotCertificateException.
*
* @param message error message.
*/
public AWSIotCertificateException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy