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

net.thucydides.plugins.jira.client.CouldNotLocateServiceException Maven / Gradle / Ivy

There is a newer version: 0.9.268
Show newest version
package net.thucydides.plugins.jira.client;

import javax.xml.rpc.ServiceException;

/**
 * The JIRA SOAP service could not be located.
 */
public class CouldNotLocateServiceException extends RuntimeException {
    public CouldNotLocateServiceException(String message, ServiceException cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy