![JAR search and dependency download from the Maven repository](/logo.png)
momento.sdk.exceptions.AlreadyExistsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java client SDK for Momento Serverless Cache
package momento.sdk.exceptions;
import momento.sdk.internal.MomentoTransportErrorDetails;
/** A resource already exists. */
@Deprecated // Use CacheAlreadyExistsException instead
public class AlreadyExistsException extends CacheAlreadyExistsException {
/**
* Constructs an AlreadyExistsException with a cause and error details.
*
* @param cause the cause.
* @param transportErrorDetails details about the request and error.
*/
public AlreadyExistsException(
Throwable cause, MomentoTransportErrorDetails transportErrorDetails) {
super(cause, transportErrorDetails);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy