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);
}
}