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

com.intellifylearning.IntellifyQueueFullException Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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