com.github.tomato.exception.ElSyntaxException Maven / Gradle / Ivy
package com.github.tomato.exception;
/**
* 如果你填写了错误的Spring EL表达式,将会遇到这个异常
*
* @author liuxin
* 2021/10/25 3:19 下午
*/
public class ElSyntaxException extends RuntimeException {
public ElSyntaxException() {
super();
}
public ElSyntaxException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy