/******************************************************************************* * Copyright (c) 2012 SpringSource, a divison of VMware, Inc. * 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: * SpringSource, a division of VMware, Inc. - initial API and implementation *******************************************************************************/ package org.eclipse.virgo.ide.runtime.internal.core.utils; import java.io.IOException; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.ui.statushandlers.StatusManager; import org.eclipse.virgo.ide.runtime.core.ServerCorePlugin; /** * * @author mparker * */ public class StatusUtil { public static void error(String message, Exception e) { StatusManager.getManager().handle(new Status(IStatus.ERROR, ServerCorePlugin.PLUGIN_ID, "An IO Exception occurred.", e)); } public static void error(Exception e) { if (e instanceof IOException) { error("An IO Exception occurred.", e); } error("An unexpected exception occurred.", e); } }