blob: cd2dea22d02e81e58949a8b2999ca171b0bb6bcb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.environment;
import java.util.Collection;
import org.eclipse.osee.framework.jdk.core.util.Collections;
import org.osgi.framework.BundleException;
/**
* @author Robert A. Fisher
*/
public class BundleResolveException extends Exception {
private static final long serialVersionUID = 5506351677181297953L;
private final Collection<BundleException> bundleExceptions;
public BundleResolveException(String message, Collection<BundleException> bundleExceptions) {
super(message);
this.bundleExceptions = bundleExceptions;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append(super.toString() + "\n");
builder.append(Collections.toString("\n", bundleExceptions));
return builder.toString();
}
}