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

com.amazonaws.mobileconnectors.cognito.exceptions.NetworkException Maven / Gradle / Ivy


package com.amazonaws.mobileconnectors.cognito.exceptions;

/**
 * This exception is thrown when a service request failed due to network
 * connectivity problem.
 */
public class NetworkException extends DataStorageException {

    private static final long serialVersionUID = 8685123233927843893L;

    public NetworkException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

    public NetworkException(String detailMessage) {
        super(detailMessage);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy