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

io.cucumber.core.backend.CucumberBackendException Maven / Gradle / Ivy

There is a newer version: 7.18.0
Show newest version
package io.cucumber.core.backend;

import org.apiguardian.api.API;

/**
 * Thrown when the backend could not invoke some glue code. Not to be confused
 * with {@link CucumberInvocationTargetException} which is thrown when the glue
 * code throws an exception.
 */
@API(status = API.Status.STABLE)
public class CucumberBackendException extends RuntimeException {

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

    public CucumberBackendException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy