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

io.deephaven.engine.exceptions.StateException Maven / Gradle / Ivy

//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.engine.exceptions;

import io.deephaven.UncheckedDeephavenException;

public class StateException extends UncheckedDeephavenException {

    public StateException(String reason) {
        super(reason);
    }

    public StateException(String reason, Throwable cause) {
        super(reason, cause);
    }

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

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

    public StateException() {
        super();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy