blob: 2c27a47bc1162ccf14b4516dc97011ef5caa3aab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Frank Becker and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Frank Becker - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.commons.sdk.util;
import org.junit.runners.model.Statement;
public class IgnoreStatement extends Statement {
@Override
public void evaluate() {
throw new IgnoreRuleRuntimeException();
}
}