1 10 11 package org.mule.impl.model; 12 13 import org.mule.config.i18n.Message; 14 import org.mule.umo.model.ModelException; 15 16 19 public class ModelServiceNotFoundException extends ModelException 20 { 21 24 private static final long serialVersionUID = -5306713972201495210L; 25 26 29 public ModelServiceNotFoundException(String location) 30 { 31 super(Message.createStaticMessage(location)); 32 } 33 34 38 public ModelServiceNotFoundException(String location, Throwable cause) 39 { 40 super(Message.createStaticMessage(location), cause); 41 } 42 } 43 | Popular Tags |