blob: b22b388c2bc40e73471ceefd81a52a7b938db45c [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - 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();
}
}