blob: cbe676cb4fbb7a795fa4cd3ae13763afe68fb505 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.api.workbenchpart;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.part.ViewPart;
public class ViewWithCreateControlsException extends ViewPart {
public void createPartControl(Composite parent) {
throw new RuntimeException("This exception was thrown intentionally as part of an error handling test");
}
public void setFocus() {
}
}