com.exasol.containers.ssh.SshException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exasol-testcontainers Show documentation
Show all versions of exasol-testcontainers Show documentation
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);
}
}