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

io.strimzi.test.container.WaitException Maven / Gradle / Ivy

/*
 * Copyright Strimzi authors.
 * License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
 */
package io.strimzi.test.container;

/**
 * Extension for RuntimeException used in active waiting @see TestUtils.waitFor(...) method.
 * Usage of this Exception should be always associated with active waiting where the condition
 * should not always be met which results in WaitException.
 */
public class WaitException extends RuntimeException {

    /**
     *  WaitException used for active waiting
     * @param message specific message to throw
     */
    public WaitException(String message) {
        super(message);
    }

    /**
     * WaitException used for active waiting
     * @param cause type of cause
     */
    public WaitException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy