handleCan method

  1. @override
void handleCan()

Process an CAN (cancel) from the Z-Wave controller indicating that the message was received but declined

Implementation

@override
void handleCan() {
  if (_sendCompleter != null) {
    _errorWaitingForAck(ZwException.sendCanceled);
  } else {
    _logger.warning('unexpected CAN');
  }
}