haijiang
2018-04-20 e1b2bf31d85d46bcc20996ac475459f8852367aa
1
2
3
4
5
6
7
8
package com.clj.fastble.exception;
 
 
public class OtherException extends BleException {
    public OtherException(String description) {
        super(ERROR_CODE_OTHER, description);
    }
}