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

org.molgenis.data.support.TemplateExpressionUnknownAttributeException Maven / Gradle / Ivy

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

import static java.util.Objects.requireNonNull;

import org.molgenis.util.exception.CodedRuntimeException;

class TemplateExpressionUnknownAttributeException extends CodedRuntimeException {
  private static final String ERROR_CODE = "D12b";

  private final String expression;
  private final String tag;

  TemplateExpressionUnknownAttributeException(String expression, String tag) {
    super(ERROR_CODE);
    this.expression = requireNonNull(expression);
    this.tag = requireNonNull(tag);
  }

  @Override
  public String getMessage() {
    return String.format("expression:%s tag:%s", expression, tag);
  }

  @Override
  protected Object[] getLocalizedMessageArguments() {
    return new Object[] {expression, tag};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy