blob: 38c2d7d22fe6ac95967be5cc7566ffce1c9ab54e [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:
* Gregoire Dupe (Mia-Software) - Bug 366804 - [Restructuring] Table widget upgrade
*******************************************************************************/
package org.eclipse.emf.facet.util.core.exception;
public class DebuggingRuntimeException extends RuntimeException {
private static final long serialVersionUID = 6192755421845020464L;
public DebuggingRuntimeException() {
super();
}
public DebuggingRuntimeException(final String message) {
super(message);
}
public DebuggingRuntimeException(final Throwable cause) {
super(cause);
}
public DebuggingRuntimeException(final String message, final Throwable cause) {
super(message, cause);
}
}