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

io.snice.buffer.BufferException Maven / Gradle / Ivy

/**
 * 
 */
package io.snice.buffer;

/**
 * Base class for all exceptions thrown by a buffer
 * 
 * @author [email protected]
 */
public class BufferException extends RuntimeException {

    public BufferException() {
        super();
    }

    public BufferException(final String message) {
        super(message);
    }

    public BufferException(final Throwable cause) {
        super(cause);
    }

    public BufferException(final String message, final Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy