001package org.biojava.bio.program.ssaha;
002
003/**
004 * There has been some failure that prevents a search from completing.
005 *
006 * @author Matthew Pocock
007 * @since 1.4
008 */
009public class SearchException
010extends Exception {
011  public SearchException(String message) {
012    super(message);
013  }
014  
015  public SearchException(Throwable cause) {
016    super(cause);
017  }
018  
019  public SearchException(String message, Throwable cause) {
020    super(message, cause);
021  }
022}