com.kobylynskyi.graphql.codegen.model.exception.UnableToLoadFreeMarkerTemplateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-codegen Show documentation
Show all versions of graphql-java-codegen Show documentation
Java Code Generator based on GraphQL schema
The newest version!
package com.kobylynskyi.graphql.codegen.model.exception;
/**
* Exception that indicates error while loading Apache FreeMarker template
*
* @author kobylynskyi
*/
public class UnableToLoadFreeMarkerTemplateException extends RuntimeException {
public UnableToLoadFreeMarkerTemplateException(Throwable e) {
super("Unable to load FreeMarker templates", e);
}
}