blob: bbdea4f85ca41f34cf14c74b77718c845b956c93 [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;
/**
* @param message
* @param bundleExceptions
*/
public BundleResolveException(String message, Collection<BundleException> bundleExceptions) {
super(message);
this.bundleExceptions = bundleExceptions;
}
/* (non-Javadoc)
* @see java.lang.Throwable#toString()
*/
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append(super.toString() + "\n");
builder.append(Collections.toString("\n", bundleExceptions));
return builder.toString();
}
}