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

io.cucumber.java.PendingException Maven / Gradle / Ivy

There is a newer version: 7.18.1
Show newest version
package io.cucumber.java;

import io.cucumber.core.backend.Pending;
import org.apiguardian.api.API;

/**
 * When thrown from a step marks it as not yet implemented.
 *
 * @see JavaSnippet
 */
@Pending
@API(status = API.Status.STABLE)
public final class PendingException extends RuntimeException {

    public PendingException() {
        this("TODO: implement me");
    }

    public PendingException(String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy