From 09854665739e163f2bd7537efeec9a8556d9926a Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Thu, 2 Jun 2011 10:41:05 +0200 Subject: [PATCH] not enough of values --- testApp/remote/pvput.cpp | 3 +++ 1 file changed, 3 insertions(+) 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;