diff --git a/Data/include/Poco/Data/Extraction.h b/Data/include/Poco/Data/Extraction.h index 985d3bd47..90b4ad32a 100644 --- a/Data/include/Poco/Data/Extraction.h +++ b/Data/include/Poco/Data/Extraction.h @@ -200,7 +200,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -289,7 +290,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -380,7 +382,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); } @@ -469,7 +472,8 @@ public: try { return _nulls.at(row); - }catch (std::out_of_range& ex) + } + catch (std::out_of_range& ex) { throw RangeException(ex.what()); }