1 17 package org.apache.servicemix.components.mps; 18 19 public class PropertySetNotFoundException extends Exception { 20 21 public PropertySetNotFoundException() { 22 super(); 23 } 24 25 public PropertySetNotFoundException(String message, Throwable cause) { 26 super(message, cause); 27 } 28 29 public PropertySetNotFoundException(String message) { 30 super(message); 31 } 32 33 public PropertySetNotFoundException(Throwable cause) { 34 super(cause); 35 } 36 37 38 } 39 | Popular Tags |