blob: 7f8838a693618c6fdea21a405e40b6485acb8233 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.uima.pear;
import java.util.ArrayList;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.swt.widgets.Shell;
/**
*
* This is the generic exception used to handle exceptions related to PEAR.
*
*/
public class PearException extends Exception {
/** The Constant PLUGIN_ID. */
public static final String PLUGIN_ID = "org.apache.uima.pear"; //$NON-NLS-1$
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/**
* Instantiates a new pear exception.
*/
public PearException() {
}
/**
* Instantiates a new pear exception.
*
* @param message the message
*/
public PearException(String message) {
super(message);
}
/**
* Instantiates a new pear exception.
*
* @param cause the cause
*/
public PearException(Throwable cause) {
super(cause);
}
/**
* Instantiates a new pear exception.
*
* @param message the message
* @param cause the cause
*/
public PearException(String message, Throwable cause) {
super(message, cause);
}
/**
* Gets the custom stack trace.
*
* @return the custom stack trace
*/
IStatus[] getCustomStackTrace() {
Object[] o = getCustomStackTrace(getCause()).toArray();
if (o != null) {
IStatus[] sa = new IStatus[o.length];
for (int i = 0; i < o.length; i++) {
sa[i] = (IStatus) o[i];
}
return sa;
}
else {
return new IStatus[0];
}
}
/**
* Gets the custom stack trace.
*
* @param e the e
* @return the custom stack trace
*/
synchronized ArrayList getCustomStackTrace(Throwable e) {
ArrayList a = new ArrayList();
if (e != null) {
String msg = e.getMessage();
msg = msg == null ? "" : msg; //$NON-NLS-1$
a.add(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, msg, e));
StackTraceElement[] trace = e.getStackTrace();
for (int i = 0; i < trace.length; i++) {
a.add(new Status(IStatus.ERROR, PLUGIN_ID, IStatus.ERROR, " at " + trace[i], e));
}
Throwable aCause = e.getCause();
if (aCause != null) {
a.addAll(getCustomStackTrace(aCause));
}
}
return a;
}
/**
* opens an ErrorDialog with details about this exception.
*
* @param shell the shell
*/
public void openErrorDialog(Shell shell) {
try {
getCause().printStackTrace();
String msg = getCause().getMessage();
msg = msg == null ? "" : msg; //$NON-NLS-1$
MultiStatus status = new MultiStatus(PLUGIN_ID, IStatus.ERROR, getCustomStackTrace(), msg,
getCause());
ErrorDialog.openError(shell, "Operation Error", getMessage()
+ " \nPlease see the details (below).", status, 0xFFFF);
} catch (Throwable th) {
th.printStackTrace();
}
}
/**
* opens an ErrorDialog with details about a given exception.
*
* @param e
* An exception
* @param shell
* A shell
*/
public static void openErrorDialog(Throwable e, Shell shell) {
PearException subEx = new PearException("An error occured during the requested operation.", e);
subEx.openErrorDialog(shell);
}
}