1 17 package org.apache.servicemix.jbi; 18 19 import javax.jbi.servicedesc.ServiceEndpoint; 20 import javax.xml.namespace.QName ; 21 22 27 public class NoServiceAvailableException extends NoEndpointAvailableException { 28 private QName serviceName; 29 30 public NoServiceAvailableException(QName serviceName) { 31 super("Cannot find an instance of the service: " + serviceName); 32 this.serviceName = serviceName; 33 } 34 35 38 public QName getServiceName() { 39 return serviceName; 40 } 41 } 42 | Popular Tags |