
com.intellifylearning.IntellifyQueueFullException Maven / Gradle / Ivy
package com.intellifylearning;
/**
* Thrown when attempting to add to a full queue
*/
public class IntellifyQueueFullException extends IntellifyException {
private static final long serialVersionUID = 1L;
public IntellifyQueueFullException() {}
public IntellifyQueueFullException(String message) {
super(message);
}
public IntellifyQueueFullException(Throwable cause) {
super(cause);
}
public IntellifyQueueFullException(String message, Throwable cause) {
super(message, cause);
}
public IntellifyQueueFullException(String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy