All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.appdapter.gui.util.ClassNotFoundExceptionFA Maven / Gradle / Ivy

Go to download

Appdapter Maven project including Java and Scala, produces jar, not bundle. Excludes concrete SLF4J binding.

There is a newer version: 1.2.4
Show newest version
package org.appdapter.gui.util;
/**
 *  So we can tell when we've throw the ClassNotFoundException ourselves
 * @author Administrator
 *
 */
public class ClassNotFoundExceptionFA extends ClassNotFoundException {

	public ClassNotFoundExceptionFA(String m, Throwable e) {
		super(m, e);
	}

	public ClassNotFoundExceptionFA(String m) {
		super(m);
	}

	@Override public String getMessage() {
		String m = super.getMessage();
		if (m != null)
			return "Felix: " + m;
		return null;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy