Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.significantfiles.android.sqlite; //from w ww .j a v a 2s . co m import android.net.Uri; public class UnsupportedUri extends RuntimeException { public UnsupportedUri(final Uri uri) { super(createMsg(uri)); } private static String createMsg(final Uri uri) { return "Uri is not supported [uri = " + uri + "]"; } /** * */ private static final long serialVersionUID = 1L; }