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

com.exasol.containers.ssh.SshException Maven / Gradle / Ivy

Go to download

This module provides abstraction for generation, startup, shutdown and use of an Exasol database running on Docker.

The newest version!
package com.exasol.containers.ssh;

/**
 * Special exception for SSH API.
 */
public class SshException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    /**
     * Create new instance of {@link SshException}
     *
     * @param message message
     */
    public SshException(final String message) {
        super(message);
    }

    /**
     * @param message message
     * @param cause   exception causing the current instance of {@link SshException}
     */
    public SshException(final String message, final Exception cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy