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

io.fabric8.maven.docker.wait.WaitTimeoutException Maven / Gradle / Ivy

There is a newer version: 0.45.0
Show newest version
package io.fabric8.maven.docker.wait;

import java.util.concurrent.TimeoutException;

/**
 * Wait for a certain amount of time
 *
 * @author roland
 * @since 25/03/2017
 */
public class WaitTimeoutException extends TimeoutException {
    private final long waited;

    WaitTimeoutException(String message, long waited) {
        super(message);
        this.waited = waited;
    }

    public long getWaited() {
        return waited;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy