1 /*2 * ProductConfigWrapperException.java3 *4 * Created on 2 settembre 2004, 18.545 */6 7 package org.ofbiz.product.config;8 9 /**10 *11 * @author jacopo12 */13 public class ProductConfigWrapperException extends Exception {14 15 /** Creates a new instance of ProductConfigWrapperException */16 public ProductConfigWrapperException(String message) {17 super(message);18 }19 20 }21