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

momento.sdk.exceptions.AlreadyExistsException Maven / Gradle / Ivy

There is a newer version: 1.19.0
Show newest version
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