
org.appdapter.gui.util.ClassNotFoundExceptionFA Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.appdapter.lib.gui Show documentation
Show all versions of org.appdapter.lib.gui Show documentation
Appdapter Maven project including Java and Scala, produces jar, not bundle. Excludes concrete SLF4J binding.
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