1 10 11 package org.mule.providers.service; 12 13 import org.mule.config.i18n.Message; 14 15 22 23 public class ConnectorServiceNotFoundException extends ConnectorFactoryException 24 { 25 28 private static final long serialVersionUID = -8321406750213654479L; 29 30 33 public ConnectorServiceNotFoundException(String location) 34 { 35 super(Message.createStaticMessage(location)); 36 } 37 38 42 public ConnectorServiceNotFoundException(String location, Throwable cause) 43 { 44 super(Message.createStaticMessage(location), cause); 45 } 46 } 47 | Popular Tags |