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

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

There is a newer version: 2021.12.006
Show newest version
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.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy