
kim.sesame.framework.cache.exception.ValueIsNullException Maven / Gradle / Ivy
The newest version!
package kim.sesame.framework.cache.exception;
import kim.sesame.framework.exception.GeneralException;
/**
* Description: key存在,value为null
*
*/
public class ValueIsNullException extends GeneralException {
private static final long serialVersionUID = 932825584009506614L;
public ValueIsNullException(String message) {
super(message);
}
public ValueIsNullException(Throwable e) {
super(e);
}
public ValueIsNullException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy