1 package org.weda.store; 2 3 /** 4 * 5 * @author tim 6 */ 7 public class ObjectSourceException extends Exception { 8 9 public ObjectSourceException(String message) { 10 super(message); 11 } 12 13 public ObjectSourceException(String message, Throwable cause){ 14 super(message, cause); 15 } 16 17 }