1 package org.enhydra.shark.api.internal.repositorypersistence; 2 3 import org.enhydra.shark.api.RootException; 4 5 11 public class RepositoryException extends RootException { 12 13 18 public RepositoryException(String message) { 19 super(message); 20 } 21 22 29 public RepositoryException(Throwable t) { 30 super(t); 31 } 32 33 40 public RepositoryException(String message, Throwable t) { 41 super(message, t); 42 } 43 } 44 45 | Popular Tags |