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

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

Go to download

The AWS Android SDK for Amazon Cognito Sync module holds the client classes that are used for communicating with Amazon Cognito Sync Service

There is a newer version: 2.6.9
Show newest version

package com.amazonaws.mobileconnectors.cognito.exceptions;

/**
 * This exception is thrown when the dataset operation exceeds certain limit,
 * e.g. maximum of 20 datasets per identity, 1024 records per dataset, and 1mb
 * in size per dataset, etc.
 */
public class DataLimitExceededException extends DataStorageException {

    private static final long serialVersionUID = 4722137117318719134L;

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy