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

cucumber.api.osgi.ServiceNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package cucumber.api.osgi;

public class ServiceNotFoundException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public ServiceNotFoundException() {
    }

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

    public ServiceNotFoundException(Throwable cause) {
        super(cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy