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