![JAR search and dependency download from the Maven repository](/logo.png)
org.ak.trafficController.messaging.exception.ThresholdReachedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of in-memory-queue Show documentation
Show all versions of in-memory-queue Show documentation
This deals with different aspects like In memory queue, throttling, event management etc
package org.ak.trafficController.messaging.exception;
/**
* Threshold reached exception. Thrown by InMemoryQueue when threshold reached.
* @author amit.khosla
*/
public class ThresholdReachedException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructor of Threshold reached exception.
*/
public ThresholdReachedException() {
super("Thredhold limit reached. Cannot add more.");
}
/**
* Constructor of threshold reached exception.
* @param message Exception message
*/
public ThresholdReachedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy