/* * 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: JOOoConvertPluginImpl.java 18651 2007-05-13 20:28:53Z sfermigier $ */ package org.eclipse.ecr.core; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> * * @deprecated Do not use this class - it is internal to nuxeo repository core and * will be removed from the API soon */ @Deprecated public class CoreRuntimeException extends RuntimeException { private static final long serialVersionUID = 4917408908773220562L; public CoreRuntimeException() { } public CoreRuntimeException(String message) { super(message); } public CoreRuntimeException(String message, Throwable cause) { super(message, cause); } public CoreRuntimeException(Throwable cause) { super(cause); } }