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

com.github.winx402.river.exception.ParsingCacheKeyException Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.github.winx402.river.exception;

/**
 * @author wangwenxiang
 */
public class ParsingCacheKeyException extends RuntimeException {
    public ParsingCacheKeyException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy