org.gramar.exception.InvalidTemplateExtensionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gramar Show documentation
Show all versions of gramar Show documentation
A lightweght, pure-Java component that makes composite software architecture design patterns extremely consumable through code generation.
The newest version!
package org.gramar.exception;
public class InvalidTemplateExtensionException extends GramarException {
public InvalidTemplateExtensionException() {
// TODO Auto-generated constructor stub
}
public InvalidTemplateExtensionException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public InvalidTemplateExtensionException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public InvalidTemplateExtensionException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public InvalidTemplateExtensionException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy