blob: 63e3d979fdb56abda6045c004b0a6a63aa6cc0e5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Innoopract Informationssysteme GmbH.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.rap.ui.internal.launch.util;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.*;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.rap.ui.internal.launch.Activator;
import org.eclipse.swt.widgets.Display;
public final class ErrorUtil {
public static void show( final String message, final Throwable throwable ) {
Throwable cause = throwable;
if( cause instanceof InvocationTargetException ) {
cause = ( ( InvocationTargetException )cause ).getTargetException();
}
final IStatus status;
if( throwable instanceof CoreException ) {
status = ( ( CoreException )throwable ).getStatus();
} else {
String statusMessage = message;
if( statusMessage == null ) {
statusMessage = throwable.getMessage();
}
if( statusMessage == null ) {
statusMessage = throwable.toString();
}
status = new Status( IStatus.ERROR,
Activator.getPluginId(),
0,
statusMessage,
throwable );
}
Activator.getDefault().getLog().log( status );
Display display = Display.getCurrent();
if( display == null ) {
display = Display.getDefault();
}
display.asyncExec( new Runnable() {
public void run() {
ErrorDialog.openError( null, null, null, status );
}
} );
}
private ErrorUtil() {
// prevent instantiation
}
}