diff --git a/testApp/remote/pvput.cpp b/testApp/remote/pvput.cpp index 1a20bcf..ae7155a 100644 --- a/testApp/remote/pvput.cpp +++ b/testApp/remote/pvput.cpp @@ -654,6 +654,9 @@ int main (int argc, char *argv[]) } } while (false); + } catch (std::out_of_range& oor) { + allOK = false; + std::cout << "parse error: not enough of values" << std::endl; } catch (std::exception& ex) { allOK = false; std::cout << ex.what() << std::endl;