All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.cmi.rpc.CMIProxyFactoryException Maven / Gradle / Ivy

The newest version!
/**
 * CMI : Cluster Method Invocation
 * Copyright (C) 2007 Bull S.A.S.
 * Contact: [email protected]
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 * --------------------------------------------------------------------------
 * $Id: CMIProxyFactoryException.java 2438 2010-02-24 16:20:30Z benoitf $
 * --------------------------------------------------------------------------
 */

package org.ow2.cmi.rpc;

/**
 * @author The new CMI team
 *
 */
public class CMIProxyFactoryException extends Exception {

    /**
     * Id for serializable class.
     */
    private static final long serialVersionUID = -6474127680657275520L;

    public CMIProxyFactoryException(final String arg0) {
        super(arg0);
    }

    public CMIProxyFactoryException(final String arg0, final Throwable arg1) {
        super(arg0, arg1);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy