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

io.descoped.rawdata.api.RawdataNotBufferedException Maven / Gradle / Ivy

The newest version!
package io.descoped.rawdata.api;

public class RawdataNotBufferedException extends RuntimeException {
    public RawdataNotBufferedException() {
    }

    public RawdataNotBufferedException(String message) {
        super(message);
    }

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

    public RawdataNotBufferedException(Throwable cause) {
        super(cause);
    }

    public RawdataNotBufferedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy