1 17 package org.apache.servicemix.jbi; 18 19 import javax.jbi.JBIException; 20 21 26 public class MissingPropertyException extends JBIException { 27 private String property; 28 29 public MissingPropertyException(String property) { 30 super("Cannot use this component as the property '" + property + "' was not configured"); 31 this.property = property; 32 } 33 34 37 public String getProperty() { 38 return property; 39 } 40 } 41 | Popular Tags |