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.java 2 s . c o m public class TableNameIsInvalidException extends RuntimeException { public TableNameIsInvalidException() { super(); } public TableNameIsInvalidException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public TableNameIsInvalidException(String detailMessage) { super(detailMessage); } public TableNameIsInvalidException(Throwable throwable) { super(throwable); } }