blob: a1eeeac8b631c7b5539326daf37b78f22b663018 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Composent, Inc. and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Composent, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.server.generic;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.ecf.core.util.ECFException;
/**
* @since 4.0
*/
public class GenericServerContainerGroupCreateException extends ECFException {
private static final long serialVersionUID = -7527971074366079811L;
public GenericServerContainerGroupCreateException() {
super();
}
public GenericServerContainerGroupCreateException(IStatus status) {
super(status);
}
public GenericServerContainerGroupCreateException(String message, Throwable cause) {
super(message, cause);
}
public GenericServerContainerGroupCreateException(String message) {
super(message);
}
public GenericServerContainerGroupCreateException(Throwable cause) {
super(cause);
}
}