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; /*from w w w . j a v a 2 s .co m*/ public class TableNameIsNotDefinedException extends RuntimeException { public TableNameIsNotDefinedException() { super(); } public TableNameIsNotDefinedException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public TableNameIsNotDefinedException(String detailMessage) { super(detailMessage); } public TableNameIsNotDefinedException(Throwable throwable) { super(throwable); } }