1 17 package org.alfresco.repo.search.impl.lucene.fts; 18 19 public class FTSIndexerException extends RuntimeException  20 { 21 22 25 private static final long serialVersionUID = 3258134635127912754L; 26 27 public FTSIndexerException() 28 { 29 super(); 30 } 31 32 public FTSIndexerException(String message) 33 { 34 super(message); 35 } 36 37 public FTSIndexerException(String message, Throwable cause) 38 { 39 super(message, cause); 40 } 41 42 public FTSIndexerException(Throwable cause) 43 { 44 super(cause); 45 } 46 47 } 48 | Popular Tags |