blob: 58630a2b9c6378d0f240e65caff8c72a77b8f0fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.osgi.framework.adaptor;
/**
* Exception class to denote that the class is in an imported package
* but the class was not found! This is thrown by ImportClassLoader
* and caught by BundleClassLoader in the loadClass method after
* calling parent.loadClass().
*
*/
public class ImportClassNotFoundException extends ClassNotFoundException {
/**
* Constructor with no detail message
*/
public ImportClassNotFoundException() {
super();
}
/**
* Constructor with detail message
*
* @param s the detail message.
*/
public ImportClassNotFoundException(String s) {
super(s);
}
}