uriSchemeHandler.CouldNotOpenUriSchemeHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of URISchemeHandler Show documentation
Show all versions of URISchemeHandler Show documentation
A Java library to open and register applications with a URI scheme.
The newest version!
package uriSchemeHandler;
import java.io.IOException;
@SuppressWarnings("serial")
public class CouldNotOpenUriSchemeHandler extends Exception {
public CouldNotOpenUriSchemeHandler(final IOException e, final String uri) {
super("Could not open Uri scheme handler for "+uri,e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy