All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.star.exception.CacheException Maven / Gradle / Ivy

The newest version!
package com.star.exception;

/**
 * 缓存的异常类
 *
 * @author starhq
 */
public class CacheException extends RuntimeException {

    public CacheException() {
        super();
    }

    public CacheException(String message) {
        super(message);
    }

    public CacheException(String message, Throwable cause) {
        super(message, cause);
    }

    public CacheException(Throwable cause) {
        super(cause);
    }

    protected CacheException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy