1 /* 2 * DataSourceRegistryException.java 3 * Created on 24 Апрель 2006 г., 22:50 4 */ 5 6 package org.weda.store; 7 8 /** 9 * 10 * @author Mikhail Titov 11 */ 12 public class ObjectSourceRegistryException extends java.lang.Exception { 13 14 public ObjectSourceRegistryException(String msg){ 15 super(msg); 16 } 17 18 public ObjectSourceRegistryException(String msg, Throwable cause){ 19 super(msg, cause); 20 } 21 }