io.deephaven.engine.exceptions.ArgumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-api Show documentation
Show all versions of deephaven-engine-api Show documentation
Engine API: Engine API module, suitable as a compile-time dependency for most queries
The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.engine.exceptions;
import io.deephaven.UncheckedDeephavenException;
public class ArgumentException extends UncheckedDeephavenException {
public ArgumentException(String reason) {
super(reason);
}
public ArgumentException(String reason, Throwable cause) {
super(reason, cause);
}
public ArgumentException(Throwable cause) {
super(cause);
}
public ArgumentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ArgumentException() {
super();
}
}