/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id: ImportDocumentException.java 29029 2008-01-14 18:38:14Z ldoguin $ */ package org.eclipse.ecr.core.io.exceptions; /** * Import document exception. * * @author <a href="mailto:at@nuxeo.com">Anahide Tchertchian</a> * */ public class ImportDocumentException extends RuntimeException { private static final long serialVersionUID = 2045308733731717902L; public ImportDocumentException() { } public ImportDocumentException(String message) { super(message); } public ImportDocumentException(String message, Throwable cause) { super(message, cause); } public ImportDocumentException(Throwable cause) { super(cause); } }