com.tukeof.common.exception.InvalidBeanExpressionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-core Show documentation
Show all versions of common-core Show documentation
a common and useful pure java library
The newest version!
package com.tukeof.common.exception;
/**
* Create by tuke on 2018-12-27
*/
public class InvalidBeanExpressionException extends RuntimeException {
public InvalidBeanExpressionException() {
super();
}
public InvalidBeanExpressionException(String message) {
super(message);
}
public InvalidBeanExpressionException(String message, Throwable cause) {
super(message, cause);
}
public InvalidBeanExpressionException(Throwable cause) {
super(cause);
}
}