org.ow2.carol.cmi.controller.provider.ClientClusterViewProviderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmi-api Show documentation
Show all versions of cmi-api Show documentation
API used/provided by CMI.
/**
* 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:ClientClusterViewProviderException.java 985 2007-06-08 08:08:24Z loris $
* --------------------------------------------------------------------------
*/
package org.ow2.carol.cmi.controller.provider;
/**
* Exception thrown if the provider cannot get the cluster view.
* @author The new CMI team
*/
public class ClientClusterViewProviderException extends Exception {
/**
* Id for serializable class.
*/
private static final long serialVersionUID = 1938933779808069295L;
/**
* Constructs a new runtime exception with the specified detail message and
* cause.
*
* Note that the detail message associated with cause
is
* not automatically incorporated in this runtime exception's detail
* message.
* @param msg the detail message (which is saved for later retrieval by
* the {@link #getMessage()} method).
* @param cause the cause (which is saved for later retrieval by the
* {@link #getCause()} method). (A null value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
*/
public ClientClusterViewProviderException(final String msg, final Throwable cause) {
super(msg, cause);
}
}