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

com.giffing.bucket4j.spring.boot.starter.exception.Bucket4jGeneralException Maven / Gradle / Ivy

There is a newer version: 0.12.7
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy