001/*
002 * Copyright (c) 2006-2015 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Julien Anguenot
011 *     Florent Guillaume
012 */
013package org.nuxeo.ecm.core.lifecycle;
014
015import org.nuxeo.ecm.core.api.NuxeoException;
016
017/**
018 * Deprecated and never thrown, kept for compatibility so that old code catching this still works.
019 * <p>
020 * Use {@link org.nuxeo.ecm.core.api.LifeCycleException} instead.
021 *
022 * @deprecated since 7.4, use org.nuxeo.ecm.core.api.LifeCycleException instead
023 */
024@Deprecated
025public class LifeCycleException extends NuxeoException {
026
027    private static final long serialVersionUID = 1L;
028
029    public LifeCycleException() {
030    }
031
032    public LifeCycleException(String message) {
033        super(message);
034    }
035
036    public LifeCycleException(String message, Throwable cause) {
037        super(message, cause);
038    }
039
040    public LifeCycleException(Throwable cause) {
041        super(cause);
042    }
043
044}