OtherException.java 192 B

12345678910
  1. package com.clj.fastble.exception;
  2. public class OtherException extends BleException {
  3. public OtherException(String description) {
  4. super(ERROR_CODE_OTHER, description);
  5. }
  6. }