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