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

org.zodiac.cache.exception.CacheException Maven / Gradle / Ivy

The newest version!
package org.zodiac.cache.exception;

import org.zodiac.sdk.toolkit.exception.ParameterizeMessageRuntimeException;

public class CacheException extends ParameterizeMessageRuntimeException {

    private static final long serialVersionUID = -3147279282647738885L;

    public CacheException(String messageTemplate, Object... params) {
        super(messageTemplate, params);
    }

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

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

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

    public CacheException(Throwable throwable, String messageTemplate, Object... params) {
        super(throwable, messageTemplate, params);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy