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

com.exasol.containers.workarounds.WorkaroundException 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.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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy