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

org.molgenis.data.DataAlreadyExistsException Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data;

import javax.annotation.CheckForNull;
import javax.annotation.Nullable;

/**
 * Thrown when a data or metadata element already exist.
 *
 * @see EntityAlreadyExistsException
 */
@SuppressWarnings("squid:MaximumInheritanceDepth")
public abstract class DataAlreadyExistsException extends ErrorCodedDataAccessException {
  public DataAlreadyExistsException(String errorCode) {
    super(errorCode);
  }

  DataAlreadyExistsException(String errorCode, @Nullable @CheckForNull Throwable cause) {
    super(errorCode, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy