package org.wyona.yarep.core; /** * */ public class RepositoryException extends Exception { /** * */ public RepositoryException() { super(); } /** * */ public RepositoryException(Throwable t) { super(t); } /** * */ public RepositoryException(String s) { super(s); } /** * */ public RepositoryException(String s, Throwable t) { super(s, t); } }