source code cosmetics

This commit is contained in:
Guenter Obiltschnig
2014-04-18 21:09:13 +02:00
parent 7df5583f57
commit 8d14b92b65

View File

@@ -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());
}