blob: fa2a40edcf8be53db8feef07c979f484d6047784 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.jdt.internal.core.builder;
import org.eclipse.core.runtime.CoreException;
/**
* Exception thrown when there is an internal error in the image builder.
* May wrapper another exception.
*/
public class ImageBuilderInternalException extends RuntimeException {
protected CoreException coreException;
public ImageBuilderInternalException(CoreException e) {
this.coreException = e;
}
public CoreException getThrowable() {
return coreException;
}
public void printStackTrace() {
if (coreException != null) {
System.err.println(this);
System.err.println("Stack trace of embedded core exception:"); //$NON-NLS-1$
coreException.printStackTrace();
} else {
super.printStackTrace();
}
}
}