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 *     Bogdan Stefanescu
011 *     Florent Guillaume
012 */
013package org.nuxeo.ecm.core.api.model;
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.PropertyException} instead.
021 *
022 * @deprecated since 7.4, use org.nuxeo.ecm.core.api.PropertyException instead
023 */
024@Deprecated
025public class PropertyException extends NuxeoException {
026
027    private static final long serialVersionUID = 1L;
028
029    public PropertyException() {
030        super();
031    }
032
033    public PropertyException(String message) {
034        super(message);
035    }
036
037    public PropertyException(String message, Throwable cause) {
038        super(message, cause);
039    }
040
041    public PropertyException(Throwable cause) {
042        super(cause);
043    }
044
045}