
com.amazonaws.mobileconnectors.cognito.exceptions.DataLimitExceededException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-android-sdk-cognito Show documentation
Show all versions of aws-android-sdk-cognito Show documentation
The AWS Android SDK for Amazon Cognito Sync module holds the client classes that are used for communicating with Amazon Cognito Sync Service
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