package org.pirkaengine.core.template;
import org.pirkaengine.core.PirkaRuntimeException;
/**
* throw.
* @author shuji.w6e
* @since 0.1.0
*/
public class TemplateBuildFailedException extends PirkaRuntimeException {
private static final long serialVersionUID = 1L;
/**
* .
* @param message
*/
public TemplateBuildFailedException(String message) {
super(message);
}
/**
* .
* @param cause
*/
public TemplateBuildFailedException(Throwable cause) {
super(cause);
}
}
|