1 17 package org.alfresco.repo.importer; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 public class ExportSourceImporterException extends AlfrescoRuntimeException 22 { 23 24 27 private static final long serialVersionUID = -2366069362776024153L; 28 29 public ExportSourceImporterException(String msgId) 30 { 31 super(msgId); 32 } 33 34 public ExportSourceImporterException(String msgId, Object [] msgParams) 35 { 36 super(msgId, msgParams); 37 } 38 39 public ExportSourceImporterException(String msgId, Throwable cause) 40 { 41 super(msgId, cause); 42 } 43 44 public ExportSourceImporterException(String msgId, Object [] msgParams, Throwable cause) 45 { 46 super(msgId, msgParams, cause); 47 } 48 49 } 50 | Popular Tags |