blob: 8d3e01a5ccf5f6be80a8c35983c70356fc8397ae [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 SharedObjectInitException extends ECFException {
private static final long serialVersionUID = 3617579318620862771L;
public SharedObjectInitException() {
super();
}
public SharedObjectInitException(String arg0) {
super(arg0);
}
public SharedObjectInitException(String msg, Throwable cause) {
super(msg, cause);
}
public SharedObjectInitException(Throwable cause) {
super(cause);
}
}