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

org.zodiac.template.base.TemplateException Maven / Gradle / Ivy

The newest version!
package org.zodiac.template.base;

public class TemplateException extends RuntimeException {

    private static final long serialVersionUID = -470382657433662042L;

    public TemplateException() {
        super();
    }

    public TemplateException(String message, Throwable cause) {
        super(message, cause);
    }

    public TemplateException(String message) {
        super(message);
    }

    public TemplateException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy