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 *     Bogdan Stefanescu
011 *     Florent Guillaume
012 */
013package org.nuxeo.runtime;
014
015/**
016 * A generic exception thrown by the Nuxeo Runtime.
017 */
018public class RuntimeServiceException extends RuntimeException {
019
020    private static final long serialVersionUID = 1L;
021
022    public RuntimeServiceException() {
023    }
024
025    public RuntimeServiceException(String message) {
026        super(message);
027    }
028
029    public RuntimeServiceException(String message, Throwable cause) {
030        super(message, cause);
031    }
032
033    public RuntimeServiceException(Throwable cause) {
034        super(cause);
035    }
036
037}