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

com.addc.commons.queue.persistence.PersistentQueueException Maven / Gradle / Ivy

Go to download

The addc-queues library supplies support for internal persistent queues using an optional DERBY database for storage.

The newest version!
package com.addc.commons.queue.persistence;

/**
 * The PersistentQueueException is thrown when operations on a persistent queue
 * fail.
 */
public class PersistentQueueException extends Exception {
    private static final long serialVersionUID= 1383096642354209525L;

    /**
     * 
     * Create a new PersistentQueueException
     * 
     * @param message
     *            The message
     */
    public PersistentQueueException(String message) {
        super(message);
    }

    /**
     * 
     * Create a new PersistentQueueException
     * 
     * @param cause
     *            The cause
     */
    public PersistentQueueException(Throwable cause) {
        super(cause);
    }

    /**
     * 
     * Create a new PersistentQueueException
     * 
     * @param message
     *            The message
     * @param cause
     *            The cause
     */
    public PersistentQueueException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy