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

jp.go.nict.langrid.servicecontainer.service.composite.ServiceLoadingFailedException Maven / Gradle / Ivy

Go to download

Service container including JSON-RPC handler for the Service Grid Server Software and java web services.

There is a newer version: 1.1.3
Show newest version
package jp.go.nict.langrid.servicecontainer.service.composite;

public class ServiceLoadingFailedException extends Exception{
	public ServiceLoadingFailedException(String serviceId, String msg) {
		super(msg);
		this.serviceId = serviceId;
	}

	public ServiceLoadingFailedException(Throwable t) {
		super(t);
	}

	public ServiceLoadingFailedException(String msg, Throwable t) {
		super(msg, t);
	}

	public String getServiceId() {
		return serviceId;
	}

	private String serviceId;
	private static final long serialVersionUID = -557559177367257652L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy