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