blob: 765ca3b2962b6c00245ec4b5d1cbc2632fffd498 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.core.sharedobject;
import org.eclipse.ecf.core.util.ECFException;
public class SharedObjectCreateException extends ECFException {
private static final long serialVersionUID = 3546919195137815606L;
public SharedObjectCreateException() {
super();
}
public SharedObjectCreateException(String arg0) {
super(arg0);
}
public SharedObjectCreateException(String msg, Throwable cause) {
super(msg, cause);
}
public SharedObjectCreateException(Throwable cause) {
super(cause);
}
}