com.giffing.bucket4j.spring.boot.starter.exception.Bucket4jGeneralException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bucket4j-spring-boot-starter Show documentation
Show all versions of bucket4j-spring-boot-starter Show documentation
Spring Boot Starter für Bucket4J
package com.giffing.bucket4j.spring.boot.starter.exception;
import com.giffing.bucket4j.spring.boot.starter.config.failureanalyzer.Bucket4JAutoConfigFailureAnalyzer;
/**
* All exceptions should be extend from the this base exception.
* The {@link Bucket4JAutoConfigFailureAnalyzer} uses this class as a base class to analyze
* the exception on startup.
*
*/
public abstract class Bucket4jGeneralException extends RuntimeException {
private static final long serialVersionUID = 1L;
protected Bucket4jGeneralException() {
super();
}
protected Bucket4jGeneralException(String message) {
super(message);
}
}