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

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

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

import static java.util.Objects.requireNonNull;

import org.molgenis.data.meta.model.EntityType;

@SuppressWarnings("squid:MaximumInheritanceDepth")
public class UnknownAttributeException extends UnknownDataException {
  private static final String ERROR_CODE = "D04";
  private final transient EntityType entityType;
  private final String attributeName;

  public UnknownAttributeException(EntityType entityType, String attributeName) {
    super(ERROR_CODE);
    this.entityType = requireNonNull(entityType);
    this.attributeName = requireNonNull(attributeName);
  }

  @Override
  public String getMessage() {
    return "type:" + entityType.getId() + " attribute:" + attributeName;
  }

  @Override
  protected Object[] getLocalizedMessageArguments() {
    return new Object[] {entityType, attributeName};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy