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 {
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");
new BeginEHSMMessage(mPumpSession).send(mDevice);
Log.d(TAG, "Finished beginEHSMSession");
......@@ -210,7 +210,7 @@ public class MedtronicCnlReader {
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");
new EndEHSMMessage(mPumpSession).send(mDevice);
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