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

com.devonfw.cobigen.impl.exceptions.UnknownContextVariableException Maven / Gradle / Ivy

The newest version!
package com.devonfw.cobigen.impl.exceptions;

import com.devonfw.cobigen.api.exception.InvalidConfigurationException;

/**
 * The {@link UnknownContextVariableException} occurs a context variable is used, which is unknown by xsd definition
 */
public class UnknownContextVariableException extends InvalidConfigurationException {

  /** Generated serial version UID */
  private static final long serialVersionUID = 1;

  /**
   * Creates a new {@link UnknownContextVariableException} with the name of the unknown variable
   *
   * @param variableName name of the unknown variable
   */
  public UnknownContextVariableException(String variableName) {

    super(
        "Either unknown context variable: " + variableName + "or invalid external incrementRef in case of having one.");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy