blob: 2e7791214cf699213744dc6827b15ee2603ce3a3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.debug.tests;
/**
* Exception to indicate a test should be run again when it fails.
*
* @since 3.3
*/
public class TestAgainException extends RuntimeException {
/**
* Constructor
* @param string
*/
public TestAgainException(String string) {
super(string);
}
/**
* Generated serial version id
*/
private static final long serialVersionUID = 1848804390493463729L;
}