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.jav a 2s . co m public class InsertException extends RuntimeException { public InsertException(final String sql, final Object[] arguments, final Throwable cause) { super(createMsg(sql, arguments), cause); } private static String createMsg(final String sql, final Object[] arguments) { return "Couldn't execute insert [sql = " + sql + "] on database [name = ...]"; } private static final long serialVersionUID = 1L; }