From 34ade3188a96ee51c8dc895ac087d80480536968 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Mon, 27 Mar 2017 21:28:01 +0200 Subject: Use separate exception for wrong receiving packet's CRC Signed-off-by: Szczepan Zalega --- include/device_proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/device_proto.h') diff --git a/include/device_proto.h b/include/device_proto.h index b137689..964c2d9 100644 --- a/include/device_proto.h +++ b/include/device_proto.h @@ -371,7 +371,7 @@ namespace nitrokey { resp.command_id, resp.device_status, resp.storage_status.progress_bar_value); } - if (!resp.isValid()) throw DeviceReceivingFailure("Invalid incoming packet"); + if (!resp.isValid()) throw InvalidCRCReceived("Invalid incoming packet"); if (receiving_retry_counter <= 0) throw DeviceReceivingFailure( "Maximum receiving_retry_counter count reached for receiving response from the device!"); -- cgit v1.2.1