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