All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.mobileconnectors.iot.AWSIotCertificateException Maven / Gradle / Ivy


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