
com.intellifylearning.IntellifyQueueFullException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
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