/******************************************************************************* * Copyright (c) 2008, 2010 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: * VMware Inc. - initial contribution *******************************************************************************/ package org.eclipse.virgo.kernel.osgi.framework; /** * An extension to {@link ClassNotFoundException} that provides access to the ClassLoader that * attempted the class load. * <p /> * * <strong>Concurrent Semantics</strong><br /> * <strong>Thread-safe</strong> * */ public class ExtendedClassNotFoundException extends ClassNotFoundException { private static final long serialVersionUID = 6045566593339869456L; // Do not attempt to serialise the class loader as it is probably not serialisable. private final transient ClassLoader classLoader; public ExtendedClassNotFoundException(ClassLoader classLoader, ClassNotFoundException cause) { super(cause.getMessage() + " in " + classLoader, cause); this.classLoader = classLoader; } public ClassLoader getClassLoader() { return this.classLoader; } }