blob: 6325a06ed0211429e094937cc44c63385a37c374 [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 resource is in an imported package
* but the resource was not found! This is thrown by ImportClassLoader
* and caught by BundleClassLoader in the getResource* methods after
* calling parent.getResource*().
*
*/
public class ImportResourceNotFoundException extends RuntimeException {
/**
* Constructor with no detail message
*/
public ImportResourceNotFoundException() {
super();
}
/**
* Constructor with detail message
*
* @param s the detail message.
*/
public ImportResourceNotFoundException(String s) {
super(s);
}
}