com.devonfw.cobigen.impl.exceptions.UnknownTemplateException 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
A Code-based incremental Generator
package com.devonfw.cobigen.impl.exceptions;
import com.devonfw.cobigen.api.exception.InvalidConfigurationException;
/**
* The {@link UnknownTemplateException} occurs if a template is requested which is not registered in the
* template configuration
* @author mbrunnli (19.02.2013)
*/
public class UnknownTemplateException extends InvalidConfigurationException {
/**
* Generated serial version UID
*/
private static final long serialVersionUID = 1;
/**
* Creates a new {@link UnknownTemplateException} with the given message
* @param templateId
* Template ID
*/
public UnknownTemplateException(String templateId) {
super("Unknown template with id=" + templateId + ". Template could not be found in the configuration.");
}
}