blob: 095c38e41e4f7150f14a4e186398f4d837a8a7f3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Mia-Software.
* 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:
* Grégoire Dupé (Mia-Software) - Bug 365808 - [Unit Test Failure][0.2/4.2][0.2/3.8] org.eclipse.emf.facet.widgets.nattable.tests.NatTableAPITests
* Grégoire Dupé (Mia-Software) - Bug 367153 - synchronization utilities
*******************************************************************************/
package org.eclipse.emf.facet.util.ui.internal.exported.displaysync;
class DisplaySyncRuntimeException extends RuntimeException {
private static final long serialVersionUID = -4424355632936609905L;
public DisplaySyncRuntimeException() {
super();
}
public DisplaySyncRuntimeException(final String message) {
super(message);
}
public DisplaySyncRuntimeException(final Throwable cause) {
super(cause);
}
public DisplaySyncRuntimeException(final String message, final Throwable cause) {
super(message, cause);
}
}