blob: 790f5751b3126c93123b4e066f95f3f7485e5e8a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal;
import org.eclipse.jface.window.Window;
/**
* This handler will pass along to the workbench advisor exceptions
* and errors thrown while running the event loop. However, the
* <code>ThreadDeath</code> error is simply thrown again, and is not
* passed along.
*/
public final class ExceptionHandler implements Window.IExceptionHandler {
private static final ExceptionHandler instance = new ExceptionHandler();
/**
* Returns the singleton exception handler.
*
* @return the singleton exception handler
*/
public static ExceptionHandler getInstance() {
return instance;
}
private int exceptionCount = 0; // To avoid recursive errors
private ExceptionHandler() {
// prevents instantiation
}
/* (non-javadoc)
* @see org.eclipse.jface.window.Window.IExceptionHandler#handleException
*/
public void handleException(Throwable t) {
try {
// Ignore ThreadDeath error as its normal to get this when thread dies
if (t instanceof ThreadDeath) {
throw (ThreadDeath) t;
}
// Check to avoid recursive errors
exceptionCount++;
if (exceptionCount > 2) {
if (t instanceof RuntimeException) {
throw (RuntimeException) t;
} else if (t instanceof Error) {
throw (Error) t;
} else {
throw new RuntimeException(t);
}
}
// Let the advisor handle this now
Workbench wb = Workbench.getInstance();
if (wb != null) {
wb.getAdvisor().eventLoopException(t);
}
} finally {
exceptionCount--;
}
}
}