blob: 168ce3ce87b6915a25db51df8e04ff99c2e551bd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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.core.tests.internal.builders;
/**
* A builder that always fails to load.
*/
public class BrokenBuilder extends TestBuilder {
public static final String BUILDER_NAME = "org.eclipse.core.tests.resources.brokenbuilder";
public BrokenBuilder() {
throw new RuntimeException();
}
}