1 17 package org.alfresco.repo.search; 18 19 25 public class SearcherException extends RuntimeException  26 { 27 28 31 private static final long serialVersionUID = 3905522713513899318L; 32 33 public SearcherException() 34 { 35 super(); 36 } 37 38 public SearcherException(String message) 39 { 40 super(message); 41 } 42 43 public SearcherException(String message, Throwable cause) 44 { 45 super(message, cause); 46 } 47 48 public SearcherException(Throwable cause) 49 { 50 super(cause); 51 } 52 53 } 54 | Popular Tags |