1 17 package org.alfresco.repo.search; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class IndexerException extends AlfrescoRuntimeException 27 { 28 private static final long serialVersionUID = 3257286911646447666L; 29 30 public IndexerException(String message) 31 { 32 super(message); 33 } 34 35 public IndexerException(String message, Throwable cause) 36 { 37 super(message, cause); 38 } 39 } 40 | Popular Tags |