Skip to content
Snippets Groups Projects
Commit 9f6fa488 authored by Volker Richert's avatar Volker Richert
Browse files

add missing exceptions

parent d1ec382a
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,7 @@ public class MedtronicCnlReader { ...@@ -163,7 +163,7 @@ public class MedtronicCnlReader {
return mPumpSession.getRadioChannel(); return mPumpSession.getRadioChannel();
} }
public void beginEHSMSession() throws EncryptionException, IOException, TimeoutException, ChecksumException { public void beginEHSMSession() throws EncryptionException, IOException, TimeoutException, ChecksumException, UnexpectedMessageException {
Log.d(TAG, "Begin beginEHSMSession"); Log.d(TAG, "Begin beginEHSMSession");
new BeginEHSMMessage(mPumpSession).send(mDevice); new BeginEHSMMessage(mPumpSession).send(mDevice);
Log.d(TAG, "Finished beginEHSMSession"); Log.d(TAG, "Finished beginEHSMSession");
...@@ -210,7 +210,7 @@ public class MedtronicCnlReader { ...@@ -210,7 +210,7 @@ public class MedtronicCnlReader {
Log.d(TAG, "Finished getHistory"); Log.d(TAG, "Finished getHistory");
} }
public void endEHSMSession() throws EncryptionException, IOException, TimeoutException, ChecksumException { public void endEHSMSession() throws EncryptionException, IOException, TimeoutException, ChecksumException, UnexpectedMessageException {
Log.d(TAG, "Begin endEHSMSession"); Log.d(TAG, "Begin endEHSMSession");
new EndEHSMMessage(mPumpSession).send(mDevice); new EndEHSMMessage(mPumpSession).send(mDevice);
Log.d(TAG, "Finished endEHSMSession"); Log.d(TAG, "Finished endEHSMSession");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment