001/*
002 * Copyright (c) 2006-2014 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 *     Alexandre Russel
011 *     Florent Guillaume
012 */
013package org.nuxeo.ecm.core.api;
014
015/**
016 * Deprecated and unused in Nuxeo, see NXP-17449.
017 *
018 * @deprecated since 7.4, use org.nuxeo.ecm.core.api.NuxeoException instead
019 */
020@Deprecated
021public class ClientRuntimeException extends NuxeoException {
022
023    private static final long serialVersionUID = 1L;
024
025    public ClientRuntimeException() {
026    }
027
028    public ClientRuntimeException(String message) {
029        super(message);
030    }
031
032    public ClientRuntimeException(Throwable t) {
033        super(t);
034    }
035
036    public ClientRuntimeException(String message, Throwable t) {
037        super(message, t);
038    }
039
040}