1 /* 2 * ValueProviderException.java 3 * Created on 14 Май 2006 г., 0:07 4 */ 5 6 package org.weda.data; 7 8 /** 9 * @author tim 10 */ 11 public class DataProviderException extends java.lang.Exception { 12 13 public DataProviderException(String msg) { 14 super(msg); 15 } 16 17 public DataProviderException(String msg, Throwable cause) { 18 super(msg, cause); 19 } 20 21 }