Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1877d4873d01c896ce5236c0da2783554771737a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2003, 2004 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 {
	private static final long serialVersionUID = 3256446884712363064L;

	/**
	 * Constructor with no detail message
	 */
	public ImportClassNotFoundException() {
		super();
	}

	/**
	 * Constructor with detail message
	 *
	 * @param   s   the detail message.
	 */
	public ImportClassNotFoundException(String s) {
		super(s);
	}
}

Back to the top