jp.go.nict.langrid.servicecontainer.service.composite.ServiceLoadingFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jp.go.nict.langrid.servicecontainer Show documentation
Show all versions of jp.go.nict.langrid.servicecontainer Show documentation
Service container including JSON-RPC handler for the Service Grid Server Software and java web services.
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