Back to project page kvs-schema.
The source code is released under:
MIT License
If you think the Android project kvs-schema 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.rejasupotaro.android.kvs.internal.exceptions; //w w w .j a v a2 s. c o m public class TableNameDuplicateException extends RuntimeException { public TableNameDuplicateException() { super(); } public TableNameDuplicateException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public TableNameDuplicateException(String detailMessage) { super(detailMessage); } public TableNameDuplicateException(Throwable throwable) { super(throwable); } }