
com.devonfw.cobigen.impl.exceptions.UnknownContextVariableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Code-based incremental generator
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