diff --git a/Source/LinnStrumentSerial.cpp b/Source/LinnStrumentSerial.cpp index 11bca45..dea0cdf 100644 --- a/Source/LinnStrumentSerial.cpp +++ b/Source/LinnStrumentSerial.cpp @@ -83,7 +83,11 @@ bool LinnStrumentSerial::readSettings() std::cerr << e.what() << std::endl; return false; } - + catch (serial::IOException e) { + std::cerr << e.what() << std::endl; + return false; + } + return true; }