公告板
版本库
filestore
活动
搜索
登录
Hunter
/
sdk/PickTime
PickTime日期选择控件
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Share project.
Hunter0x7c7
2024-11-21
979ae7c9ffb06359a15b633ab009773f5c964dd5
[Hunter/sdk/PickTime.git]
/
mylibrary
/
src
/
main
/
java
/
com
/
codbking
/
widget
/
genview
/
UnSupportedWheelViewException.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.codbking.widget.genview;
public class UnSupportedWheelViewException extends Exception {
private static final long serialVersionUID = 1894662683963152958L;
String mistake;
public UnSupportedWheelViewException() {
super();
mistake = "Only support List, Map,String Array,Cursor,SparseArray,SparseBooleanArray,SparseIntArray,Vector, and basic data type";
}
public UnSupportedWheelViewException(String err) {
super(err); // call super class constructor
mistake = err; // save message
}
public String getError() {
return mistake;
}
}