com.exasol.containers.workarounds.WorkaroundException 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.workarounds;
/**
* Exception thrown while trying to apply a workaround.
*/
public class WorkaroundException extends Exception {
private static final long serialVersionUID = 3637242640868814029L;
/**
* Create a new instance of a {@link WorkaroundException}.
*
* @param message error message
*/
public WorkaroundException(final String message) {
super(message);
}
/**
* Create a new instance of a {@link WorkaroundException}.
*
* @param message error message
* @param cause exception causing this one
*/
public WorkaroundException(final String message, final Throwable cause) {
super(message, cause);
}
}