cn.dreampie.common.plugin.lesscss.compiler.LessCssException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfinal-dreampie Show documentation
Show all versions of jfinal-dreampie Show documentation
jfinal shiro-freemarker plugins
package cn.dreampie.common.plugin.lesscss.compiler;
public class LessCssException extends RuntimeException {
public LessCssException(String message) {
super(message);
}
public LessCssException(String message, Throwable cause) {
super(message, cause);
}
}