Hunter0x7c7
2024-11-21 979ae7c9ffb06359a15b633ab009773f5c964dd5
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;
    }
}