陈奇
2018-12-07 4203968ed148a7e56ab460c8d6edb744cb1645e4
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);
    }
}