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